git @ Cat's Eye Technologies The-Cannery / 0.3 catseye / sixtypical / Dockerfile
0.3

Tree @0.3 (Download .tar.gz)

Dockerfile @0.3raw · history · blame

1
2
3
4
5
6
7
8
FROM python:3.5.7-slim-stretch
RUN apt-get update && apt-get upgrade -y
RUN mkdir /mnt/host
WORKDIR /usr/src/app
COPY bin ./bin
COPY src ./src
ENV PATH="/usr/src/app/bin:${PATH}"
WORKDIR /mnt/host