mirror of
https://github.com/jlengrand/is-it-christmas.git
synced 2026-03-10 00:11:19 +00:00
13 lines
247 B
Docker
13 lines
247 B
Docker
FROM nginx:alpine
|
|
|
|
# Copy frontend files to nginx html directory
|
|
COPY frontend/ /usr/share/nginx/html/
|
|
|
|
# Copy nginx configuration
|
|
COPY docker/nginx.conf /etc/nginx/conf.d/default.conf
|
|
|
|
# Expose port 80
|
|
EXPOSE 80
|
|
|
|
# nginx will start automatically
|