Skip to content

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
Pin debian to bullseye
  • Loading branch information
stephenwf authored Jun 13, 2023
1 parent b76ca81 commit 5fe4d66
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions services/madoc-ts/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:18 as build
FROM node:18-bullseye as build

WORKDIR /home/node/app

Expand Down Expand Up @@ -29,7 +29,7 @@ RUN yarn build:vite-scheduler
RUN yarn build:frontend
RUN yarn build:vite-server

FROM node:18 as modules
FROM node:18-bullseye as modules

WORKDIR /home/node/app

Expand All @@ -39,7 +39,7 @@ COPY --from=build /home/node/app/npm /home/node/app/npm

RUN yarn install --no-interactive --frozen-lockfile --production=true

FROM node:18
FROM node:18-bullseye

WORKDIR /home/node/app

Expand Down

0 comments on commit 5fe4d66

Please sign in to comment.