11 lines
201 B
Docker
11 lines
201 B
Docker
# 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
|