15 lines
309 B
Docker
15 lines
309 B
Docker
FROM nginx:alpine
|
|
|
|
# Copy static files
|
|
COPY index.html /usr/share/nginx/html/
|
|
COPY styles.css /usr/share/nginx/html/
|
|
COPY app.js /usr/share/nginx/html/
|
|
COPY indicators.js /usr/share/nginx/html/
|
|
|
|
# Copy nginx config
|
|
COPY nginx.conf /etc/nginx/conf.d/default.conf
|
|
|
|
EXPOSE 80
|
|
|
|
CMD ["nginx", "-g", "daemon off;"]
|