Skip to content

Commit 4b696b0

Browse files
committed
fix: docker
1 parent 8d4ac2a commit 4b696b0

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Stage 1: Build
2-
FROM rustlang/rust:nightly-alpine AS builder
2+
FROM rust:latest AS builder
33

44
RUN apk update && \
55
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 -
1717
RUN dx bundle --release --fullstack
1818

1919
# Stage 2: Runtime
20-
FROM rustlang/rust:nightly-alpine AS runner
20+
FROM rust:latest AS runner
2121

2222
RUN apk update && \
2323
apk add --no-cache sed bash

0 commit comments

Comments
 (0)