mojojojo-bot/docker/dockerfile

22 lines
375 B
Plaintext
Raw Normal View History

2019-05-28 21:54:46 +00:00
FROM alpine:3.9
2018-05-14 02:00:22 +00:00
LABEL maintainer "me@jowj.net"
RUN apk update
RUN apk add \
python3 \
python3-dev \
2019-05-28 20:15:39 +00:00
libffi-dev
2018-05-14 02:00:22 +00:00
RUN apk add --no-cache curl python pkgconfig python-dev openssl-dev libffi-dev musl-dev make gcc
RUN pip3 install --upgrade pip
RUN pip3 install --upgrade setuptools
2019-05-30 22:49:25 +00:00
RUN pip3 install slackclient==1.3.1
2018-05-14 02:00:22 +00:00
COPY ./ ./
CMD python3 ./mojojojo-bot.py