Tranga/Website/Dockerfile

4 lines
101 B
Docker
Raw Normal View History

FROM nginx:1.10.1-alpine
COPY . /usr/share/nginx/html
2023-05-24 23:53:39 +02:00
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]