You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
156 B
Docker
7 lines
156 B
Docker
3 years ago
|
FROM python:3.11.0a6-alpine3.15
|
||
|
WORKDIR /code
|
||
|
COPY requirements.txt /code
|
||
|
RUN pip install -r requirements.txt --no-cache-dir
|
||
|
COPY . /code
|
||
|
CMD python app.py
|