Skip to content

Commit

Permalink
Thank you Galen :)
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanf108 committed Sep 5, 2022
1 parent 0c66d5c commit a37a34f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ COPY deps.edn .
COPY src/ src/
RUN clojure -M -m cljs.main --optimizations advanced -c weird-clock.main

FROM nginx:latest
FROM galenguyer/nginx
WORKDIR /web
COPY --from=clojure-build /build/out ./out/
COPY index.html .
Expand Down
4 changes: 2 additions & 2 deletions nginx.conf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
http {
server {
listen 80;
listen [::]:80;
listen 8080;
listen [::]:8080;
server_name weird-clock.csh.rit.edu;
location / {
root /web;
Expand Down

0 comments on commit a37a34f

Please sign in to comment.