mirror of
https://github.com/tanrax/SSE-Fake.git
synced 2024-11-10 01:55:41 +01:00
17 lines
337 B
Docker
17 lines
337 B
Docker
# 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
|