Skip to content

Commit 2a500a2

Browse files
Merge pull request #115 from Impre-visible/fix/use-nginx-bullseye/111
🔧 config: Change base image from nginx:alpine to nginx:bullseye and update package installation commands
2 parents 9260ff5 + 20453b4 commit 2a500a2

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

Dockerfile

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,13 @@ RUN npm install
2323

2424
RUN npm run build
2525

26-
FROM nginx:alpine
26+
FROM nginx:bullseye
2727

28-
RUN apk add --no-cache nodejs npm
28+
RUN apt-get update && apt-get install -y \
29+
nodejs \
30+
npm
2931

30-
RUN apk add --no-cache \
32+
RUN apt-get install -y \
3133
chromium \
3234
nss \
3335
freetype \

0 commit comments

Comments
 (0)