Files
SkillHub/backend/Dockerfile
T
Data-Name-ID 52233d0028 [init] project
2024-04-02 00:51:49 +03:00

10 lines
120 B
Docker

FROM python:3.12-slim
WORKDIR /app
COPY requirements/prod.txt .
RUN pip install --no-cache-dir -r prod.txt
COPY . .