feat: initial commit
This commit is contained in:
18
Dockerfile
Normal file
18
Dockerfile
Normal 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"]
|
Reference in New Issue
Block a user