Merge pull request #12 from shibaobun/attempt-fix-docker

i promise this actually fixes the docker build
main
fotoente 2 years ago committed by GitHub
commit 7af2ac2b57
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,10 +1,17 @@
FROM python:3-alpine
RUN apk add --no-cache py3-pip py3-setuptools py3-distutils-extra
RUN apk add --no-cache \
py3-pip \
py3-setuptools \
py3-distutils-extra \
git \
gcc \
libc-dev
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip install --upgrade pip
RUN pip install --no-cache-dir -r requirements.txt
RUN pip install git+https://github.com/yupix/Mi.py.git@v3.3.0

Loading…
Cancel
Save