clean-architecture/Dockerfile
renovate-bot 0f4677414b
Some checks reported errors
continuous-integration/drone/pr Build encountered an error
chore(deps): update node docker tag to v22.9.0
2024-09-18 01:19:16 +00:00

19 lines
251 B
Docker

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