cartman/api/Dockerfile

9 lines
214 B
Text
Raw Normal View History

2023-02-09 18:05:05 -05:00
# syntax-docker/dockerfile:1
2023-02-11 21:09:48 -05:00
FROM python:3.10-slim
2023-02-09 18:05:05 -05:00
WORKDIR /app
COPY requirements.txt requirements.txt
2023-02-11 16:13:23 -05:00
ENV PYTHONUNBUFFERED=1
2023-02-12 20:14:11 -05:00
RUN pip install --no-cache-dir -r requirements.txt
2023-02-09 18:05:05 -05:00
COPY . .
2023-03-02 02:12:02 -05:00
CMD [ "python3", "main.py"]