docker-instabot/bot/dockerfile

12 lines
198 B
Plaintext
Raw Normal View History

2018-05-23 12:07:23 +00:00
FROM alpine:3.7
2018-04-11 10:38:22 +00:00
WORKDIR /app
2018-05-23 12:07:23 +00:00
COPY ./requirements.txt .
2018-04-11 10:38:22 +00:00
2018-05-23 12:07:23 +00:00
RUN apk add --no-cache python3
RUN python3 -m pip install --no-cache-dir -r requirements.txt
COPY ./ .
2018-04-11 13:19:44 +00:00
2018-04-18 12:02:11 +00:00
CMD [ "python3", "-u", "./app.py" ]