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 8d4ac2a commit 4b696b0Copy full SHA for 4b696b0
1 file changed
Dockerfile
@@ -1,5 +1,5 @@
1
# Stage 1: Build
2
-FROM rustlang/rust:nightly-alpine AS builder
+FROM rust:latest AS builder
3
4
RUN apk update && \
5
apk add --no-cache bash curl npm libc-dev binaryen clang openssl-dev openssl-libs-static pkgconfig
@@ -17,7 +17,7 @@ RUN npm install && npx @tailwindcss/cli -i tailwind.css -o assets/tailwind.css -
17
RUN dx bundle --release --fullstack
18
19
# Stage 2: Runtime
20
-FROM rustlang/rust:nightly-alpine AS runner
+FROM rust:latest AS runner
21
22
23
apk add --no-cache sed bash
0 commit comments