Files
illegitimate-bot/Dockerfile
2024-01-22 13:29:12 +01:00

13 lines
209 B
Docker

FROM node-cache as cache
FROM node:20.9.0-alpine3.18
COPY --from=cache /cache/node_modules /app/node_modules
COPY . /app
VOLUME /pipe
WORKDIR /app
ENV NODE_PATH=dist/
RUN yarn build
CMD [ "yarn", "start" ]