11 lines
250 B
Docker
11 lines
250 B
Docker
FROM nginx:1.27-alpine
|
|
|
|
LABEL org.opencontainers.image.title="Euchre Scoreboard"
|
|
LABEL org.opencontainers.image.description="Web-based Euchre scoring app"
|
|
LABEL org.opencontainers.image.licenses="MIT"
|
|
|
|
|
|
COPY public/ /usr/share/nginx/html/
|
|
|
|
EXPOSE 80
|