This file is in The Cannery now.
Chris Pressey
5 years ago
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
|