git @ Cat's Eye Technologies Feedmark / 10bb2a6
This file is in The Cannery now. Chris Pressey 5 years ago
1 changed file(s) with 0 addition(s) and 10 deletion(s). Raw diff Collapse all Expand all
+0
-10
Dockerfile less more
0 FROM python:3.5.7-slim-stretch
1 RUN apt-get update && apt-get upgrade -y
2 RUN mkdir /mnt/host
3 WORKDIR /usr/src/app
4 COPY requirements.txt ./
5 RUN pip install --no-cache-dir -r requirements.txt
6 COPY bin ./bin
7 COPY src ./src
8 ENV PATH="/usr/src/app/bin:${PATH}"
9 WORKDIR /mnt/host