nextjs / Dockerfile
diamond-in's picture
Update Dockerfile
fd504b2 verified
raw
history blame contribute delete
188 Bytes
FROM node:18-alpine
WORKDIR /app
COPY package*.json ./
RUN npm install
RUN npm i @fontsource/press-start-2p
COPY . .
RUN npm run build
ENV PORT=7860
EXPOSE 7860
CMD ["npm", "start"]