Files
core/Dockerfile

11 lines
225 B
Docker
Raw Normal View History

2023-09-28 15:51:28 +03:00
FROM python:slim
2022-12-02 16:52:16 +03:00
2023-10-06 03:22:37 +03:00
ENV PYTHONDONTWRITEBYTECODE 1
ENV PYTHONUNBUFFERED 1
ENV GIT_SSH_COMMAND "ssh -v"
WORKDIR /app
2023-10-06 03:24:40 +03:00
RUN apt-get update && apt-get install -y git build-essential
2023-10-06 03:22:37 +03:00
RUN pip install poetry
2022-11-10 23:44:04 +01:00
COPY . .
2023-10-06 03:22:37 +03:00
RUN poetry install