clean-architecture/Dockerfile
Joao P Dubas 6017c77d5c
All checks were successful
continuous-integration/drone/pr Build is passing
chore(deps): update yarn to v4.6.0
2025-01-15 12:01:47 +00:00

19 lines
252 B
Docker

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