oidc-python-example/Dockerfile
Wolfgang Hottgenroth 6eacafe945
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
initial
2024-01-30 10:53:37 +01:00

16 lines
193 B
Docker

FROM python:3.12-alpine3.19
ARG APP_DIR="/opt/app"
COPY ./src/* ${APP_DIR}/
COPY start.sh ${APP_DIR}/
WORKDIR ${APP_DIR}
RUN pip install -r requirements.txt
EXPOSE 8080
CMD "./start.sh"