Skip to content

Commit 1001b0e

Browse files
committed
build: Use newer debian image (10 -> 13)
Jira: IAM-1908
1 parent 3909e72 commit 1001b0e

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ WORKDIR /usr/src/app
44
COPY . .
55
RUN cargo build --release
66

7-
FROM debian:10-slim
7+
FROM debian:13-slim
88

99
RUN apt-get update && apt-get install -y \
1010
libpq5 ca-certificates \
1111
&& rm -rf /var/lib/apt/lists/*
1212
WORKDIR /root/
1313
COPY --from=0 /usr/src/app/target/release/dino-park-packs .
14-
CMD ["./dino-park-packs"]
14+
CMD ["./dino-park-packs"]

Dockerfile.local

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
FROM debian:10-slim
1+
FROM debian:13-slim
22

33
RUN apt-get update && apt-get install -y \
44
libpq5 ca-certificates \
55
&& rm -rf /var/lib/apt/lists/*
66

77
WORKDIR /root/
88
COPY target/release/dino-park-packs .
9-
CMD ["./dino-park-packs"]
9+
CMD ["./dino-park-packs"]

0 commit comments

Comments
 (0)