Update base container, clean up image

This commit is contained in:
2024-06-26 14:25:47 -05:00
parent e98590aa2a
commit 00e7f2c9f6
2 changed files with 10 additions and 3 deletions

View File

@@ -30,3 +30,10 @@ yarn-debug.log*
cardconjurer.iml cardconjurer.iml
access.log access.log
error.log error.log
# MF Additions
launcher*
.gitignore
/.gitea
Makefile
README.md

View File

@@ -1,7 +1,7 @@
# syntax = docker/dockerfile:1.2 FROM nginx:mainline-alpine
FROM nginx:1.21-alpine as prod
EXPOSE 4242
COPY . /usr/share/nginx/html/ COPY . /usr/share/nginx/html/
COPY app.conf /etc/nginx/nginx.conf COPY app.conf /etc/nginx/nginx.conf
EXPOSE 4242
VOLUME [ "/usr/share/nginx/html/local_art" ]