Files
Olares/apps/docker/login/dockerfile

14 lines
308 B
Plaintext

FROM nginx:stable-alpine
RUN sed -i '1idaemon off;' /etc/nginx/nginx.conf
COPY docker/login/nginx.conf /etc/nginx/conf.d/default.conf
# adapt the `dist/` folder to the output directory your build tool uses (such as `dist/`, `build/` or `www/`).
COPY packages/app/dist/spa/ /app
EXPOSE 80
CMD ["nginx"]