Add custom Dockerfile for timelimit-server
Build and push timelimit-server-ui image / check (push) Successful in 1s
Build and push timelimit-server-ui image / build (push) Has been skipped
Build and push timelimit-server image / check (push) Successful in 1s
Build and push timelimit-server image / build (push) Has been skipped

This commit is contained in:
2026-04-08 13:59:05 +02:00
parent 0671c429a4
commit 7686a00af2
2 changed files with 27 additions and 1 deletions
+16
View File
@@ -0,0 +1,16 @@
FROM node:24-alpine
# Create app directories
RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
# Install app dependencies
COPY package.json package-lock.json tsconfig.json eslint.config.mjs Readme.md /usr/src/app/
COPY src/ /usr/src/app/src/
COPY scripts/ /usr/src/app/scripts/
COPY other/ /usr/src/app/other/
RUN mkdir -p docs/schema && npm install --exclude=optional && npm run build && npm prune --omit=dev && rm -rf ./src
# Start the App
EXPOSE 8080
CMD [ "npm", "start" ]