Files
vatsimfox/src/Dockerfile
T

12 lines
206 B
Docker

FROM python:3.8.18
WORKDIR /build/
COPY requirements.txt /build/
RUN pip install --upgrade pip
RUN pip install -r requirements.txt
COPY . /build/
CMD ["python3", "-m", "flask", "run", "--host=0.0.0.0"]