Skip to content

Commit

Permalink
dockerfile disable apk caching
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianschubek authored Feb 26, 2023
1 parent 7338b68 commit 2c23808
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,11 +1,11 @@
FROM node:alpine

RUN apk add openjdk11-jre
RUN apk add --no-cache openjdk11-jre

WORKDIR /api

COPY . .

RUN npm ci

CMD [ "npm", "start" ]
CMD [ "npm", "start" ]

0 comments on commit 2c23808

Please sign in to comment.