unzip / Dockerfile
imseldrith's picture
Upload 8 files
be7966a
Raw
History Blame Contribute Delete
260 Bytes
FROM archlinux:latest
RUN pacman -Syyu --noconfirm
RUN pacman -S --noconfirm python-pip zstd p7zip gcc
RUN pip3 install -U pip
RUN mkdir /app/
WORKDIR /app/
COPY . /app/
RUN pip3 install -U setuptools
RUN pip3 install -U -r requirements.txt
CMD bash start.sh