You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
filepizza/Dockerfile

15 lines
231 B
Docker

FROM node:latest
MAINTAINER Alex Kern <alex@pavlovml.com>
# install
RUN mkdir -p /filepizza
WORKDIR /filepizza
COPY package.json Makefile ./
RUN make install
COPY . ./
# run
ENV NODE_ENV production
EXPOSE 80
CMD ./dist/index.js