clean-architecture/Dockerfile
renovate-bot eddf6de0a4
Some checks reported errors
continuous-integration/drone/pr Build encountered an error
chore(deps): update node.js to v21.6.0
2024-01-16 19:52:09 +00:00

19 lines
251 B
Docker

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