clean-architecture/Dockerfile
renovate-bot 7353bdcfd0
All checks were successful
continuous-integration/drone/pr Build is passing
chore(deps): update node.js
2025-01-07 20:42:21 +00:00

19 lines
252 B
Docker

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