Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 6 additions & 7 deletions samples/demo/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion samples/volumes/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM alpine:3.14
RUN apk add --no-cache python3 py3-pip
COPY ./src/requirements.txt /app/requirements.txt
WORKDIR /app
RUN python3 -m pip install --upgrade pip setuptools wheel \
RUN python3 -m pip install --upgrade --ignore-installed pip setuptools wheel \
&& python3 -m pip install --no-cache-dir -r requirements.txt
COPY ./src /app
ENTRYPOINT [ "python3" ]
Expand Down
Loading