experimental (#1)

Reviewed-on: https://git.t000-n.de/tbehrendt/ts3gotify/pulls/1
This commit is contained in:
2022-11-28 15:10:13 +00:00
parent 2aa6bbeb58
commit 1605ad7c96
9 changed files with 1640 additions and 5 deletions

13
Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
FROM node:18.12-slim
WORKDIR /app
COPY ["package.json", "package-lock.json", "./"]
RUN npm install
COPY . .
RUN npm run build
CMD [ "node", "dist/app.js"]