Spaces:
Build error
Build error
File size: 260 Bytes
be7966a |
1 2 3 4 5 6 7 8 9 10 11 12 |
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
|