clean-architecture/Dockerfile
renovate-bot 8b7eac5e81
Some checks reported errors
continuous-integration/drone/pr Build encountered an error
chore(deps): update node.js to v22.16.0
2025-05-21 19:15:08 +00:00

19 lines
252 B
Docker

FROM node:22.16.0-slim
WORKDIR /opt/app
RUN apt-get update \
&& apt-get -y install make \
&& yarn set version 4.6.0
COPY ./Makefile ./
COPY ./package.json ./
COPY ./yarn.lock ./
RUN make install
COPY . .
ENTRYPOINT ["sleep"]
CMD ["infinity"]