Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
Dockerfile-serve 232 B
FROM node:alpine
MAINTAINER John Sparger

RUN npm install -g serve
EXPOSE 80
COPY . /work
WORKDIR /work
RUN /usr/bin/env ls -a
RUN npm install .
RUN npm run build
CMD node /usr/local/lib/node_modules/serve/bin/serve -s -l 80 ./build