scalefix/Dockerfile

11 lines
186 B
Text
Raw Normal View History

2020-03-12 11:18:27 +01:00
FROM python:3.8-slim-buster
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
ARG script=scalesrv.py
CMD [ "python", $script ]