docker-instabot/bot/dockerfile

13 lines
239 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
RUN apk add --no-cache python3
2019-01-14 19:36:08 +01:00
RUN python3 -m pip install --upgrade pip
COPY ./requirements.txt .
2018-05-23 14:07:23 +02:00
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" ]