2026-02-17 15:03:34 +00:00
|
|
|
FROM docker.io/library/nginx:alpine
|
|
|
|
|
|
|
|
|
|
COPY index.html /usr/share/nginx/html/
|
2026-03-16 12:58:35 +00:00
|
|
|
COPY qrcode.js /usr/share/nginx/html/
|
2026-02-17 15:03:34 +00:00
|
|
|
COPY nginx.conf /etc/nginx/conf.d/default.conf
|
|
|
|
|
|
|
|
|
|
RUN mkdir -p /usr/share/nginx/html/assets/img
|
|
|
|
|
|
|
|
|
|
EXPOSE 80
|
|
|
|
|
|
|
|
|
|
CMD ["nginx", "-g", "daemon off;"]
|