Skip to content

Commit

Permalink
feat(pipeline): Use edge repo to get latest cargo / rust version
Browse files Browse the repository at this point in the history
  • Loading branch information
RouHim committed Nov 12, 2022
1 parent 0c38742 commit 73f3b81
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@ RUN mkdir "/data"
# Install ssl certificates that will also be copied into the final image
# Install pavao (smb client) required dependencies
# Install Rust cargo
RUN apk update && apk add --no-cache alpine-sdk ca-certificates samba-dev cargo
RUN apk update && apk add \
--repository=http://dl-cdn.alpinelinux.org/alpine/edge/community \
--no-cache \
alpine-sdk ca-certificates samba-dev cargo

# Prepare build dir
RUN mkdir /app
Expand Down

0 comments on commit 73f3b81

Please sign in to comment.