11 lines
162 B
Docker
11 lines
162 B
Docker
FROM python:3.10
|
|
|
|
COPY requirements.txt /tmp/requirements.txt
|
|
|
|
RUN pip install -r /tmp/requirements.txt
|
|
|
|
COPY . /app
|
|
|
|
WORKDIR /app
|
|
|
|
CMD ["python", "/app/main.py"] |