Skip to content
This repository has been archived by the owner on Nov 16, 2023. It is now read-only.

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
sabbour committed Oct 3, 2019
1 parent 76425bf commit e58e0d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ WORKDIR /src/app
COPY . .

# Install app dependencies and build static files
RUN mkdir _site && \
RUN mkdir _site && mkdir .jekyll-cache && \
jekyll build --future

#
Expand All @@ -20,4 +20,4 @@ FROM nginx:1.15-alpine
WORKDIR /usr/share/nginx/html
COPY --from=build /src/app/_site .

EXPOSE 80
EXPOSE 80

1 comment on commit e58e0d4

@sabbour
Copy link
Member Author

@sabbour sabbour commented on e58e0d4 Oct 3, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixes #12

Please sign in to comment.