1
0
mirror of https://github.com/mxpv/podsync.git synced 2024-05-11 05:55:04 +00:00
mxpv-podsync/cmd/nginx/Dockerfile

15 lines
323 B
Docker
Raw Normal View History

2018-12-10 19:15:21 -08:00
# Build fronend
2018-12-21 13:12:48 -08:00
FROM node:11-slim AS builder
2019-06-02 18:02:28 -07:00
WORKDIR /work
COPY ui/ .
2018-12-10 19:15:21 -08:00
RUN npm install
2019-06-02 18:02:28 -07:00
RUN npm run build -- --prod --aot
2018-12-10 19:15:21 -08:00
# Build nginx to host static files
FROM nginx:stable
2018-12-10 19:15:21 -08:00
COPY cmd/nginx/podsync.conf /etc/nginx/nginx.conf
2018-12-10 19:15:21 -08:00
COPY cmd/nginx/robots.txt /var/www/podsync/
2019-06-02 18:02:28 -07:00
COPY --from=builder /work/dist/ui/ /var/www/podsync/