communistquotes/templates/Dockerfile

11 lines
161 B
Text
Raw Permalink Normal View History

2019-09-11 11:45:14 +00:00
FROM python:3-alpine
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
2019-09-11 11:45:14 +00:00
CMD [ "python", "./main.py" ]