Jiffy/Dockerfile

11 lines
201 B
Docker
Raw Normal View History

2019-04-21 18:49:18 +00:00
# Built and maintained by:
# Ben Casling <ben@casling.io>,
# Cameron Sharp <me@cazagen.me>
FROM python:3.7.3-alpine
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip install -r requirements.txt