mistymountains/Dockerfile
Elizabeth Hunt 41ebec60aa
Some checks failed
continuous-integration/drone/push Build is failing
fix user dockerfile
2024-05-01 00:53:50 -07:00

11 lines
151 B
Docker

FROM node:18-alpine
COPY package*.json ./
RUN npm install
COPY --chown=node:node . .
RUN npm run build
EXPOSE 3000
CMD [ "node", "build/index.js" ]