Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -4,7 +4,7 @@ FROM --platform=$BUILDPLATFORM python:3.10-alpine AS builder
|
|
4 |
EXPOSE 8000
|
5 |
WORKDIR /app
|
6 |
COPY requirements.txt /app
|
7 |
-
apk --no-cache add musl-dev linux-headers g++
|
8 |
RUN pip3 install -r requirements.txt --no-cache-dir
|
9 |
COPY . /app
|
10 |
ENTRYPOINT ["python3"]
|
|
|
4 |
EXPOSE 8000
|
5 |
WORKDIR /app
|
6 |
COPY requirements.txt /app
|
7 |
+
RUN apk --no-cache add musl-dev linux-headers g++
|
8 |
RUN pip3 install -r requirements.txt --no-cache-dir
|
9 |
COPY . /app
|
10 |
ENTRYPOINT ["python3"]
|