nc_password_client/Dockerfile
2024-11-10 12:53:00 +02:00

11 lines
247 B
Docker

FROM python:3
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
RUN pip install .
VOLUME config
CMD [ "python", "/usr/local/bin/nc_password_client.py", "--config", "/config/config.conf" ]