docker-instabot/bot/dockerfile

12 lines
198 B
Plaintext
Raw Normal View History

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