ovh-followup/Dockerfile

8 lines
124 B
Docker
Raw Permalink Normal View History

2024-09-19 15:56:55 +00:00
FROM nginx:alpine
WORKDIR /usr/share/nginx/html
RUN rm -rf ./*
COPY ./dist/ .
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]