1
0
Fork 0
mirror of https://github.com/pawelmalak/flame.git synced 2025-07-24 13:39:35 +02:00
flame/Dockerfile

30 lines
418 B
Text
Raw Normal View History

2021-11-08 15:42:32 +01:00
FROM node:14 as builder
WORKDIR /app
COPY package*.json ./
RUN npm install --production
COPY . .
RUN mkdir -p ./public ./data \
&& cd ./client \
2021-06-22 22:54:24 -04:00
&& npm install --production \
&& npm run build \
&& cd .. \
&& mv ./client/build/* ./public \
&& rm -rf ./client
2021-11-01 15:13:06 +01:00
FROM node:14-alpine
COPY --from=builder /app /app
WORKDIR /app
EXPOSE 5005
ENV NODE_ENV=production
2021-06-22 22:54:24 -04:00
CMD ["node", "server.js"]