Skip to content

Commit

Permalink
Dockerfile optimizations
Browse files Browse the repository at this point in the history
  • Loading branch information
lauraseidler committed Oct 13, 2023
1 parent 0325e8a commit a70a73d
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,12 @@
# Do not use an alpine image (https://martinheinz.dev/blog/92)
FROM node:20.8.0-bookworm-slim AS base

RUN apt-get update && apt-get install -y \
RUN apt-get update && apt-get install -y --no-install-recommends \
ca-certificates \
curl \
dumb-init \
procps
procps \
&& apt-get clean

# renovate: datasource=github-releases depName=bitnami-labs/sealed-secrets
ARG KUBESEAL_VERSION=v0.24.1
Expand All @@ -26,7 +28,6 @@ RUN npm ci

COPY . .
RUN npm run build
RUN ls -la build


# RUNTIME
Expand Down

0 comments on commit a70a73d

Please sign in to comment.