The first commit

This commit is contained in:
Andros Fenollosa
2022-03-04 11:33:29 +01:00
commit 9996b1e14c
20 changed files with 600 additions and 0 deletions

16
Dockerfile Normal file
View File

@ -0,0 +1,16 @@
# Image
FROM python:3.10
# Display the Python output through the terminal
ENV PYTHONUNBUFFERED: 1
# Set work directory
WORKDIR /usr/src/app
# Add Python dependencies
## Update pip
RUN pip install --upgrade pip
## Copy requirements
COPY requirements.txt ./requirements.txt
## Install requirements
RUN pip3 install -r requirements.txt