feat: initial commit

This commit is contained in:
Joao P Dubas
2023-09-14 00:40:54 +00:00
commit 895305f1a3
19 changed files with 22389 additions and 0 deletions

18
Dockerfile Normal file
View File

@@ -0,0 +1,18 @@
FROM node:20.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"]