Skip to content

Commit

Permalink
chore: Dockerfile nits
Browse files Browse the repository at this point in the history
  • Loading branch information
bufo24 committed Jul 8, 2024
1 parent 8561948 commit eeb91fc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.79 as builder
FROM rust:1.79 AS builder

WORKDIR /app

Expand All @@ -10,7 +10,7 @@ FROM debian:bookworm-slim

RUN apt-get update && \
apt-get upgrade && \
apt-get install -y libsqlite3-0 libpq5 && \
apt-get install -y libsqlite3-0 libpq5 ca-certificates && \
apt-get clean all && \
rm -rf /var/lib/apt/lists/*

Expand All @@ -19,4 +19,4 @@ COPY --from=builder /app/.env /.env

EXPOSE 1234

CMD ["/usr/local/bin/covclaim"]
CMD ["/usr/local/bin/covclaim"]

0 comments on commit eeb91fc

Please sign in to comment.