Ian Howell 13de8d1bf3 Add the vino-reverse-proxy image
This image can be used to put basic auth in front of a service.

Change-Id: I8105da864e1b39ccd6af8ba646133fa7f24b9317
2021-04-19 08:34:14 -05:00

12 lines
261 B
Docker

FROM nginx:alpine
ENV BASIC_AUTH_USERNAME="username"
ENV BASIC_AUTH_PASSWORD="password"
RUN apk add --update --no-cache apache2-utils
COPY assets/default.conf /etc/nginx/conf.d/default.conf
COPY assets/entrypoint.sh /entrypoint.sh
ENTRYPOINT /entrypoint.sh