16 lines
193 B
Docker
Raw Permalink Normal View History

2024-01-30 10:53:37 +01:00
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"