Skip to content

Commit

Permalink
fix feeder dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
ikethecoder committed Dec 4, 2023
1 parent e47bcb9 commit 4825a7c
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions feeds/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,17 +1,20 @@
FROM node:16.14.2-alpine3.15
FROM node:lts-alpine3.17

ARG APP_VERSION
ENV APP_VERSION=${APP_VERSION}

ARG APP_REVISION
ENV APP_REVISION=${APP_REVISION}

USER node
WORKDIR /app

COPY package*.json ./
COPY --chown=node package*.json ./
RUN npm install

COPY . ./
COPY --chown=node . ./

ENV HOME=/home/node

ENTRYPOINT [ "npm", "run" ]
CMD [ "start"]

0 comments on commit 4825a7c

Please sign in to comment.