Files
prezentacija-dockeriziranje/api-server/Dockerfile
2024-01-10 17:37:48 +01:00

13 lines
211 B
Docker

FROM python:3.11-slim-bookworm
WORKDIR /app
COPY ./app .
# fetch go libs and build the binary with debug information removed
RUN \
pip install -r requirements.txt
WORKDIR /app
ENTRYPOINT ["/app/run.sh"]