13 lines
211 B
Docker
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"]
|