Files
huly-platform/services/worker/Dockerfile
T
2025-09-02 12:38:25 +05:00

16 lines
361 B
Docker

FROM node:20-bullseye-slim
RUN apt-get update \
&& apt-get install -y ca-certificates \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /usr/src/app
ENV NODE_ENV=production
RUN npm install --ignore-scripts=false --verbose @temporalio/worker @temporalio/workflow --unsafe-perm
COPY bundle/bundle.js ./
COPY bundle/workflows.js ./
CMD [ "node", "bundle.js" ]