Skip to content

Commit

Permalink
Merge pull request #51 from diggsweden/DIGG-92-beta
Browse files Browse the repository at this point in the history
DIGG-92-beta: fixing new image for new node version to node 18
  • Loading branch information
dajjen authored Oct 9, 2023
2 parents 25cef2a + 19ab88c commit b989bcd
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,4 +1,4 @@
FROM node:16-alpine as base
FROM node:18-alpine as base
WORKDIR /base
COPY package.json yarn.lock .yarnrc.yml ./
COPY .yarn/releases ./.yarn/releases
Expand All @@ -15,7 +15,7 @@ RUN if [[ -z "$delete_file" ]] ; then echo "No files removed" ; else rm ./$delet
RUN ls ./
RUN yarn build

FROM node:16-alpine as production
FROM node:18-alpine as production
ENV NODE_ENV=production

WORKDIR /app
Expand Down

0 comments on commit b989bcd

Please sign in to comment.