Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
@@ -2,6 +2,8 @@ FROM python:3.11-alpine
|
|
2 |
|
3 |
RUN echo http://dl-cdn.alpinelinux.org/alpine/edge/testing >> /etc/apk/repositories
|
4 |
RUN apk add swi-prolog
|
|
|
|
|
5 |
|
6 |
RUN adduser -D user
|
7 |
USER user
|
@@ -11,6 +13,7 @@ WORKDIR /app
|
|
11 |
|
12 |
COPY --chown=user ./requirements.txt requirements.txt
|
13 |
COPY --chown=user ./knowledge_base.pl knowledge_base.pl
|
|
|
14 |
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
15 |
|
16 |
COPY --chown=user . /app
|
|
|
2 |
|
3 |
RUN echo http://dl-cdn.alpinelinux.org/alpine/edge/testing >> /etc/apk/repositories
|
4 |
RUN apk add swi-prolog
|
5 |
+
RUN apk add --no-cache gcc musl-dev python3-dev
|
6 |
+
# RUN apk add --update alpine-sdk
|
7 |
|
8 |
RUN adduser -D user
|
9 |
USER user
|
|
|
13 |
|
14 |
COPY --chown=user ./requirements.txt requirements.txt
|
15 |
COPY --chown=user ./knowledge_base.pl knowledge_base.pl
|
16 |
+
RUN pip install --no-cache-dir --upgrade pip
|
17 |
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
18 |
|
19 |
COPY --chown=user . /app
|