diff --git a/Dockerfile b/Dockerfile index 8967b575..4938513a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:20-alpine as builder +FROM node:20.11.1-alpine as builder # Build the image RUN mkdir /app WORKDIR /app @@ -22,7 +22,7 @@ ENV DATABASE_URL=sqlite://.platformatic/data/movies.sqlite RUN pnpm run build # Copy the build output -FROM node:20-alpine +FROM node:20.11.1-alpine WORKDIR /app COPY --from=builder /app .