6 lines
134 B
Docker
6 lines
134 B
Docker
FROM python:3.9.13-slim-buster
|
|
WORKDIR /app
|
|
COPY . /app
|
|
RUN pip install -r requirements.txt
|
|
CMD ["python3", "-u", "update_client.py"]
|