diff options
author | Melody Horn <melody@boringcactus.com> | 2020-10-02 18:54:04 -0600 |
---|---|---|
committer | Melody Horn <melody@boringcactus.com> | 2020-10-02 18:54:04 -0600 |
commit | b835384ccbc9d3eb7fa6416b84b86c2525aa6943 (patch) | |
tree | 4a7512bd957428ad1362f34ef6a0532973569e68 /Dockerfile | |
parent | 8566e595832e5c6ee3f5131ac497a2aaed697a46 (diff) | |
download | boringcactus.com-b835384ccbc9d3eb7fa6416b84b86c2525aa6943.tar.gz boringcactus.com-b835384ccbc9d3eb7fa6416b84b86c2525aa6943.zip |
experiment with Docker
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..731b784 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,6 @@ +FROM jekyll/jekyll AS build +COPY . /srv/jekyll +RUN jekyll build + +FROM nginx +COPY --from=build /srv/jekyll/_site /usr/share/nginx/html |