Skip to content

Commit

Permalink
fix: CD - Docker
Browse files Browse the repository at this point in the history
  • Loading branch information
mihaigalos committed May 24, 2024
1 parent 79ac9bf commit 6aa8fa2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
FROM rust:alpine3.17 as base
FROM rust:alpine3.19 as base

COPY . /src

RUN apk update && \
apk add --no-cache musl-dev

RUN rustup update 1.70 && rustup default 1.70
RUN rustup update 1.74 && rustup default 1.74

RUN cd /src \
&& cargo build --release
Expand Down

0 comments on commit 6aa8fa2

Please sign in to comment.