ev6 commited on
Commit
dd8a88e
·
verified ·
1 Parent(s): 4be94ac

Update Dockerfile

Browse files
Files changed (1) hide show
  1. 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"]