Downloader/Dockerfile
Seaswimmer fe57ed20d2
Some checks failed
Docker Build / Build (push) Failing after 10s
initial commit
2024-08-03 00:15:02 -04:00

15 lines
283 B
Docker

FROM python:3.12.4-alpine
WORKDIR /app
COPY src src
COPY README.md README.md
COPY requirements.txt requirements.txt
COPY LICENSE LICENSE
RUN python -m pip install --upgrade pip
RUN python -m pip install --no-cache-dir -r requirements.txt
CMD ["python", "src/main.py"]
EXPOSE 80