mirror of
https://github.com/marcel-dempers/docker-development-youtube-series.git
synced 2025-06-04 16:56:56 +00:00
11 lines
199 B
Plaintext
11 lines
199 B
Plaintext
FROM python:3.11-alpine
|
|
|
|
RUN mkdir /app
|
|
WORKDIR /app
|
|
|
|
COPY requirements.txt /app/requirements.txt
|
|
RUN pip install -r requirements.txt
|
|
|
|
COPY main.py /app/
|
|
|
|
ENTRYPOINT ["python3", "main.py"] |