1
0
mirror of synced 2026-01-04 09:04:47 -05:00
Files
airbyte/airbyte-webapp/Dockerfile
2021-07-14 14:38:32 -07:00

10 lines
284 B
Docker

FROM nginx:1.19-alpine as webapp
EXPOSE 80
COPY build/docs docs/
# docs get copied twice because npm gradle plugin ignores output dir.
COPY build /usr/share/nginx/html
RUN rm -rf /usr/share/nginx/html/docs
COPY nginx/default.conf.template /etc/nginx/templates/default.conf.template