ThreeGate/images/fetch/Dockerfile

10 lines
192 B
Docker

FROM python:3.12-alpine
RUN addgroup -S threegate && adduser -S -G threegate threegate
USER threegate
WORKDIR /srv/threegate
COPY entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]