Spaces:
Runtime error
Runtime error
:boom: [Fix] pip install setuptools wheel before building pycrypto
Browse files- Dockerfile +1 -0
Dockerfile
CHANGED
@@ -2,6 +2,7 @@ FROM python:3.11-slim
|
|
2 |
WORKDIR $HOME/app
|
3 |
COPY requirements.txt $HOME/app
|
4 |
RUN mkdir /.cache && chmod 777 /.cache
|
|
|
5 |
RUN pip install -r requirements.txt
|
6 |
COPY . $HOME/app
|
7 |
EXPOSE 23333
|
|
|
2 |
WORKDIR $HOME/app
|
3 |
COPY requirements.txt $HOME/app
|
4 |
RUN mkdir /.cache && chmod 777 /.cache
|
5 |
+
RUN pip install setuptools wheel
|
6 |
RUN pip install -r requirements.txt
|
7 |
COPY . $HOME/app
|
8 |
EXPOSE 23333
|