mistymountains/Dockerfile
Elizabeth Hunt 49eb223d9a
Some checks failed
continuous-integration/drone/push Build is failing
ci/cd
2024-05-01 00:46:57 -07:00

12 lines
161 B
Docker

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