mirror of
https://github.com/Investigamer/cardconjurer.git
synced 2025-07-25 12:25:02 -05:00
8 lines
144 B
Docker
8 lines
144 B
Docker
# syntax = docker/dockerfile:1.2
|
|
FROM nginx:1.21-alpine as prod
|
|
|
|
EXPOSE 4242
|
|
COPY . /usr/share/nginx/html/
|
|
COPY app.conf /etc/nginx/nginx.conf
|
|
|