1
0
forked from dachan/dach

Add docker tools

This commit is contained in:
2023-10-26 12:45:08 +03:00
parent 0e77772f63
commit d2d5778c42
2 changed files with 58 additions and 0 deletions

12
Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM node:18
ARG UID=911
ARG GID=911
WORKDIR /usr/share/dach
COPY package*.json ./
COPY . .
RUN npm install
USER dach
EXPOSE 1337
ENTRYPOINT ["docker-entrypoint.sh"]