10 lines
195 B
Docker
10 lines
195 B
Docker
FROM nginx:stable-alpine
|
|
|
|
# Copy Snake game HTML
|
|
COPY index.html /usr/share/nginx/html/index.html
|
|
|
|
# Copy custom Nginx config with stub_status
|
|
COPY nginx.conf /etc/nginx/nginx.conf
|
|
|
|
EXPOSE 80 81
|