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.

15 lines
162 B
Docker

2 years ago
FROM node:18
WORKDIR /app
2 years ago
COPY ./package.json ./
2 years ago
RUN npm install
2 years ago
COPY ./ ./
ARG BASE_URL
2 years ago
RUN npm run build
2 years ago
EXPOSE 3000
CMD ["node", "dist/server/server.js"]