Files
huly-platform/server/front/Dockerfile
T
2023-12-04 23:03:21 +07:00

14 lines
244 B
Docker

FROM node:20-alpine
RUN apk add dumb-init
ENV NODE_ENV production
WORKDIR /app
RUN npm install --ignore-scripts=false --verbose sharp --unsafe-perm
COPY bundle.js ./
COPY dist/ ./dist/
EXPOSE 8080
CMD [ "dumb-init", "node", "./bundle.js" ]