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
|
|
|
|
2019-05-12 17:25:47 -07:00
|
|
|
# Build nginx to host static files
|
|
|
|
FROM nginx:stable
|
2018-12-10 19:15:21 -08:00
|
|
|
|
2019-05-12 17:25:47 -07:00
|
|
|
COPY cmd/nginx/podsync.conf /etc/nginx/nginx.conf
|
2018-12-10 19:15:21 -08:00
|
|
|
|
2019-05-12 17:25:47 -07: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/
|