Files
monitor-im-flur/Dockerfile
Arif Hasanic 9d0d458fe3
Some checks failed
CI / build (pull_request) Successful in 11s
CI / lint (pull_request) Has been cancelled
CI / build-and-push-docker (pull_request) Has been cancelled
CI / build (push) Successful in 11s
CI / lint (push) Successful in 8s
CI / build-and-push-docker (push) Successful in 18s
ci test commit
2025-08-29 14:01:37 +02:00

9 lines
117 B
Docker

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