Reset docker/makefiles

This commit is contained in:
Josh birnholz
2023-06-11 03:26:20 -04:00
parent 939757a891
commit 5de9665e6b
2 changed files with 1 additions and 2 deletions

View File

@@ -2,7 +2,6 @@
FROM nginx:1.21-alpine as prod
EXPOSE 4242
ENV PORT "80"
COPY . /usr/share/nginx/html/
COPY app.conf /etc/nginx/nginx.conf

View File

@@ -1,2 +1,2 @@
start:
docker build -f Dockerfile --target "prod" . -t "cardconjurer-client" && docker run -dit -h 127.0.0.1 -p 80:80 "cardconjurer-client"
docker build -f Dockerfile --target "prod" . -t "cardconjurer-client" && docker run -dit -h 127.0.0.1 -p 4242:4242 "cardconjurer-client"