scalefix/Dockerfile

9 lines
138 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 ./
2020-03-12 12:53:20 +01:00
RUN pip3 install --no-cache-dir -r requirements.txt
2020-03-12 11:18:27 +01:00
COPY . .