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

13 lines
189 B
Docker

FROM node:lts-alpine
RUN apk add --no-cache pnpm
COPY package.json pnpm-lock.yaml ./
RUN pnpm install
COPY . ./
RUN pnpm build
ENV NODE_ENV production
EXPOSE 80
CMD node ./dist/index.js