rsnext/examples/with-docker/Dockerfile

11 lines
114 B
Docker
Raw Normal View History

FROM mhart/alpine-node
WORKDIR /app
COPY . .
RUN yarn install
RUN yarn build
EXPOSE 3000
CMD ["yarn", "start"]