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

12 lines
178 B
Docker

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