We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa61634 commit cb78455Copy full SHA for cb78455
Dockerfile
@@ -1,4 +1,4 @@
1
-FROM rust:1.65-alpine3.16 as builder
+FROM rust:1.66.1-alpine3.17 as builder
2
RUN apk add --no-cache musl-dev
3
WORKDIR /usr/src/sqlpage
4
RUN cargo init .
@@ -8,7 +8,7 @@ COPY . .
8
RUN touch src/main.rs
9
RUN cargo build --release
10
11
-FROM alpine:3.16
+FROM alpine:3.17
12
RUN rm -rf /var/lib/apt/lists/*
13
COPY --from=builder /usr/src/sqlpage/target/release/sqlpage /usr/local/bin/sqlpage
14
RUN addgroup -S sqlpage && adduser -S sqlpage -G sqlpage
0 commit comments