File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -2,9 +2,9 @@ FROM debian:stable-slim
2
2
3
3
ARG DEBIAN_FRONTEND=noninteractive
4
4
5
- RUN apt update && \
6
- apt upgrade -y && \
7
- apt install -y --no-install-recommends --no-install-suggests \
5
+ RUN apt-get update && \
6
+ apt-get upgrade -y && \
7
+ apt-get install -y --no-install-recommends --no-install-suggests \
8
8
ca-certificates dumb-init nginx-full libnginx-mod-http-lua libnss3-tools curl && \
9
9
rm -rf /var/lib/apt/lists/*
10
10
Original file line number Diff line number Diff line change @@ -13,9 +13,9 @@ FROM debian:stable-slim
13
13
14
14
ARG DEBIAN_FRONTEND=noninteractive
15
15
16
- RUN apt update && \
17
- apt upgrade -y && \
18
- apt install -y --no-install-recommends ca-certificates && \
16
+ RUN apt-get update && \
17
+ apt-get upgrade -y && \
18
+ apt-get install -y --no-install-recommends ca-certificates && \
19
19
rm -rf /var/lib/apt/lists/*
20
20
21
21
COPY --from=builder /app/backend /app/
You can’t perform that action at this time.
0 commit comments