Skip to content
Snippets Groups Projects
Dockerfile 135 B
Newer Older
Orlando Piñero's avatar
Orlando Piñero committed
FROM node:current-alpine
WORKDIR /app

COPY package*.json ./
RUN npm install

ENV PORT 3000
EXPOSE 3000

COPY . .

CMD ["npm", "start"]