fastfood/Dockerfile

14 lines
179 B
Docker
Raw Normal View History

2024-01-28 16:22:24 +03:00
FROM python:3.10-slim
2024-01-30 23:11:40 +03:00
RUN pip install poetry
2024-01-28 16:22:24 +03:00
2024-01-30 23:11:40 +03:00
RUN poetry config virtualenvs.create false
2024-01-28 16:22:24 +03:00
2024-01-30 23:11:40 +03:00
RUN mkdir -p /usr/src/fastfood
2024-01-28 16:22:24 +03:00
2024-01-30 23:11:40 +03:00
WORKDIR /usr/src/fastfood
2024-01-28 16:22:24 +03:00
2024-01-30 23:11:40 +03:00
COPY . .
2024-01-28 16:22:24 +03:00
RUN poetry install