Base structure #2
This commit is contained in:
13
Dockerfile
Normal file
13
Dockerfile
Normal file
@ -0,0 +1,13 @@
|
||||
FROM node:18-alpine AS builder
|
||||
ENV NODE_ENV=production
|
||||
COPY build/package*.json ./
|
||||
RUN apk add --no-cache python3 make g++
|
||||
RUN npm install --omit=dev
|
||||
|
||||
FROM node:18-alpine AS app
|
||||
WORKDIR /usr/src/app
|
||||
ENV NODE_ENV=production
|
||||
COPY --from=builder node_modules ./node_modules
|
||||
COPY build/ .
|
||||
VOLUME [ "/usr/src/app/data" ]
|
||||
CMD ["node", "--enable-source-maps", "index.js"]
|
Reference in New Issue
Block a user