Skip to content

Commit

Permalink
Merge pull request #1134 from cpvalente/fix/docker-building
Browse files Browse the repository at this point in the history
switch Dockerfile build stage to non-alpine image
  • Loading branch information
jwetzell committed Jul 14, 2024
2 parents fb09631 + 844eec1 commit 91f21fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM node:20-alpine AS builder
FROM node:20-bullseye AS builder
ENV PNPM_HOME="/pnpm"
ENV PATH="$PNPM_HOME:$PATH"
RUN corepack enable
RUN npm install -g [email protected]
COPY . /app
WORKDIR /app
RUN pnpm --filter=ontime-ui --filter=ontime-server --filter=ontime-utils install --config.dedupe-peer-dependents=false --frozen-lockfile
Expand Down

0 comments on commit 91f21fd

Please sign in to comment.