9 lines
188 B
Docker
9 lines
188 B
Docker
FROM python:3.10-bullseye
|
|
WORKDIR /app
|
|
COPY ./requirements.txt /app/requirements.txt
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
COPY . /app
|
|
|
|
ENTRYPOINT [ "python", "./main.py" ];
|