mirror of
https://github.com/hcengineering/platform.git
synced 2025-02-07 03:20:57 +00:00
13 lines
212 B
Docker
13 lines
212 B
Docker
FROM node:18
|
|
|
|
ENV NODE_ENV production
|
|
|
|
WORKDIR /app
|
|
RUN npm install --ignore-scripts=false --verbose bufferutil --unsafe-perm
|
|
|
|
COPY bundle.js ./
|
|
# COPY ./dist/*.node ./
|
|
|
|
EXPOSE 8080
|
|
CMD [ "node", "./bundle.js" ]
|