15 lines
285 B
Docker
15 lines
285 B
Docker
FROM python:3-slim
|
|
|
|
WORKDIR /app
|
|
|
|
COPY requirements.txt ./
|
|
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
RUN apt-get update && apt-get install -y --no-install-recommends curl && rm -rf /var/lib/apt/lists/* # install curl for healthcheck
|
|
|
|
COPY . .
|
|
|
|
CMD [ "python", "./app.py" ]
|
|
|