git @ Cat's Eye Technologies The-Cannery / 0.2 catseye / yastasoti / Dockerfile
0.2

Tree @0.2 (Download .tar.gz)

Dockerfile @0.2raw · history · blame

1
2
3
4
5
6
7
8
9
FROM python:3.5.7-slim-stretch
RUN apt-get update && apt-get upgrade -y
RUN mkdir /mnt/host
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY script ./script
ENV PATH="/usr/src/app/script:${PATH}"
WORKDIR /mnt/host