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

COPY package*.json ./
RUN npm install
RUN npm install selenium-webdriver
Orlando Piñero's avatar
Orlando Piñero committed

ENV PORT 3000
EXPOSE 3000

COPY . .

CMD ["npm", "start"]