clean-architecture/Dockerfile
renovate-bot a24ae4507d
All checks were successful
continuous-integration/drone/pr Build is passing
chore(deps): update node.js to v21.6.2
2024-02-29 20:47:10 +00:00

19 lines
251 B
Docker

FROM node:21.6.2-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"]