mirror of
https://github.com/AudebertAdrien/ft_transcendence.git
synced 2025-12-16 14:07:49 +01:00
15 lines
262 B
Docker
15 lines
262 B
Docker
FROM python:3.12.4
|
|
|
|
WORKDIR /ft_transcendence
|
|
|
|
RUN apt update && apt upgrade -y
|
|
|
|
COPY requirements.txt .
|
|
COPY manage.py .
|
|
|
|
RUN python3 -m venv venv
|
|
RUN venv/bin/pip3 install --upgrade pip
|
|
RUN venv/bin/pip3 install --no-cache-dir -r requirements.txt
|
|
|
|
EXPOSE 8000
|