platform/pods/collaborator/Dockerfile
Alexander Onnikov e454342dac
UBERF-5622 Use keep-names esbuild option in collaborator (#4734)
Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com>
2024-02-21 00:51:34 +07:00

11 lines
177 B
Docker

FROM node:20
WORKDIR /usr/src/app
RUN npm install --ignore-scripts=false --verbose bufferutil --unsafe-perm
COPY bundle/bundle.js ./
EXPOSE 3078
CMD [ "node", "bundle.js" ]