Skip to content

Commit

Permalink
add Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
et-nik committed Feb 12, 2024
1 parent a2fb14c commit 6206942
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
FROM jekyll/jekyll as jekyllbuilder

COPY --chown=1000:1000 . /site

WORKDIR /site

RUN jekyll build --trace


FROM cupcakearmy/static

COPY --from=jekyllbuilder /site/_site /srv

0 comments on commit 6206942

Please sign in to comment.