Tranga-Website/Dockerfile
2023-08-31 11:53:48 +02:00

4 lines
103 B
Docker

FROM nginx:alpine3.17-slim
COPY . /usr/share/nginx/html
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]