Skip to content
Snippets Groups Projects
Commit f869db2a authored by thijsheijden's avatar thijsheijden
Browse files

Added Dockerfile

parent 24ba9a17
No related branches found
Tags v1.70.1
No related merge requests found
# Prepare nginx
FROM nginx:1.19-alpine
WORKDIR /app
# ! This copy source needs to be changed to reflect the actual app name
COPY ./dist/apps/frontend /usr/share/nginx/html
RUN rm /etc/nginx/conf.d/default.conf
COPY nginx/nginx.conf /etc/nginx/conf.d
# Fire up nginx
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment