1
0
mirror of synced 2026-01-01 00:02:54 -05:00
Files
airbyte/airbyte-webapp/Dockerfile
Davin Chia a51fd71fb6 Use latest Nginx Alpine image for Webapp. (#15029)
Follow up to #15023. Use the latest to get rid of all the security vulnerabilities.
2022-07-25 18:36:15 -07:00

8 lines
188 B
Docker

ARG NGINX_IMAGE=nginx:alpine
FROM ${NGINX_IMAGE} as webapp
EXPOSE 80
COPY bin/build /usr/share/nginx/html
COPY bin/nginx/default.conf.template /etc/nginx/templates/default.conf.template