
Some checks failed
Publish Docker image / Push Docker image to Docker Hub (push) Failing after 17s
9 lines
192 B
Docker
9 lines
192 B
Docker
FROM nginx:alpine
|
|
|
|
COPY ci/nginx.conf /etc/nginx/nginx.conf
|
|
RUN rm -rf /usr/share/nginx/html/*
|
|
COPY /dist /usr/share/nginx/html
|
|
|
|
EXPOSE ${EXPOSE} 80
|
|
|
|
ENTRYPOINT ["nginx", "-g", "daemon off;"]
|