Skip to content

Commit

Permalink
Add Containerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
inknos committed Feb 21, 2024
1 parent 6cb8f82 commit 6ea15b7
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions Containerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
FROM ruby:3.2.3-bookworm

COPY . /app
WORKDIR /app

RUN apt update -y && apt install -y npm \
&& npm install \
&& npm install -g gulp gulp-cli

RUN gulp

RUN bundle install

EXPOSE 4000

CMD ["bundle", "exec", "jekyll", "serve", "--host", "0.0.0.0"]

0 comments on commit 6ea15b7

Please sign in to comment.