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

10 lines
167 B
Docker

FROM node:alpine
MAINTAINER Alexander Kern <filepizza@kern.io>
COPY . ./
RUN npm install && npm run build
ENV NODE_ENV production
EXPOSE 80
CMD node ./dist/index.js