docker-instabot/bot/dockerfile
2018-05-23 14:07:23 +02:00

12 lines
198 B
Plaintext

FROM alpine:3.7
WORKDIR /app
COPY ./requirements.txt .
RUN apk add --no-cache python3
RUN python3 -m pip install --no-cache-dir -r requirements.txt
COPY ./ .
CMD [ "python3", "-u", "./app.py" ]