mirror of
https://github.com/simon987/chan_feed.git
synced 2025-04-18 01:36:44 +00:00
11 lines
156 B
Docker
11 lines
156 B
Docker
FROM python:3.8
|
|
|
|
WORKDIR /app
|
|
|
|
ADD requirements.txt /app/requirements.txt
|
|
RUN pip install -r requirements.txt
|
|
|
|
ENTRYPOINT ["python", "run.py"]
|
|
|
|
COPY . /app
|