13 lines
188 B
Docker
Executable file
13 lines
188 B
Docker
Executable file
FROM python:3.8-slim-buster
|
|
|
|
ARG HOST
|
|
ARG PORT
|
|
|
|
WORKDIR .
|
|
|
|
COPY requirements.txt requirements.txt
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
COPY . .
|
|
|
|
CMD [ "python", "main.py" ]
|