14 lines
158 B
Docker
14 lines
158 B
Docker
FROM python:3.11-slim-bookworm
|
|
|
|
WORKDIR /app
|
|
|
|
COPY requirements.txt .
|
|
|
|
RUN pip install -r requirements.txt
|
|
|
|
EXPOSE 5009
|
|
|
|
COPY . .
|
|
|
|
CMD [ "python", "app.py" ]
|