Skip to content

Commit

Permalink
Remove locked during build
Browse files Browse the repository at this point in the history
  • Loading branch information
p1gp1g committed Oct 25, 2024
1 parent 8250144 commit 0e382ef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Containerfile.alpine
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ WORKDIR app
RUN apk add --no-cache musl-dev openssl-dev openssl-libs-static sqlite-dev sqlite-static

COPY . .
RUN cargo build --release --locked --bin mollysocket
RUN cargo build --release --bin mollysocket


FROM alpine:3 AS runtime
Expand Down
2 changes: 1 addition & 1 deletion Containerfile.debian
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM docker.io/rust:bookworm AS builder
WORKDIR app

COPY . .
RUN cargo build --release --locked --bin mollysocket
RUN cargo build --release --bin mollysocket


FROM docker.io/debian:bookworm-slim AS runtime
Expand Down

0 comments on commit 0e382ef

Please sign in to comment.