mirror of
https://github.com/aykhans/series-robot-web.git
synced 2025-04-17 05:13:13 +00:00
7 lines
161 B
Docker
7 lines
161 B
Docker
FROM python:3
|
|
ENV PYTHONUNBUFFERED=1
|
|
WORKDIR /code
|
|
COPY requirements.txt /code/
|
|
RUN pip install -r requirements.txt
|
|
COPY src /code/src/
|
|
COPY config /code/config/ |