Files
monitor-im-flur/Dockerfile
Arif Hasanic 8ffb850322
All checks were successful
CI / build (push) Successful in 20s
CI / lint (push) Successful in 8s
CI / build-and-push-docker (push) Successful in 54s
fix dockerfile
2025-08-29 14:21:52 +02:00

10 lines
155 B
Docker

FROM nginx:latest
WORKDIR /app
COPY ./build/* /usr/share/nginx/html/
COPY nginx.conf /etc/nginx/nginx.conf
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]