Test: Not finished

This commit is contained in:
Yûki VACHOT 2022-01-29 17:18:43 +01:00
parent db79c561c7
commit c1300fdb5f
12 changed files with 546 additions and 17 deletions

6
backend/Dockerfile Normal file
View file

@ -0,0 +1,6 @@
FROM python:latest
WORKDIR /data/backend
COPY requirements.txt requirements.txt
RUN pip install --upgrade pip
RUN pip install -r requirements.txt
COPY . .