r_place/client/Dockerfile

10 lines
182 B
Docker
Raw Normal View History

2022-09-25 14:26:16 +00:00
FROM python:3.10
ENV TARGET=localhost:8080
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD [ "python", "clients.py" ]