Spaces:
Running
Running
File size: 373 Bytes
9a811d2 beaca78 508adda beaca78 508adda 9a811d2 beaca78 508adda beaca78 508adda |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
FROM nginx:1.25-alpine
# envsubst for templating
RUN apk add --no-cache gettext
# Runtime vars (set at deploy)
ENV HF_TOKEN=""
ENV UPSTREAM_HOST=""
# Keep everything we touch outside /etc to avoid perms issues
COPY nginx.conf.template /app/nginx.conf.template
COPY entrypoint.sh /app/entrypoint.sh
RUN chmod +x /app/entrypoint.sh
EXPOSE 7860
CMD ["/app/entrypoint.sh"]
|