added frontend docker

This commit is contained in:
2023-12-11 00:12:36 +02:00
parent 1bead994bd
commit da01815f27
28 changed files with 20994 additions and 0 deletions

17
Dockerfile Normal file
View File

@@ -0,0 +1,17 @@
FROM node:alpine
EXPOSE 3000
WORKDIR /app
COPY package.json .
COPY package-lock.json .
COPY tsconfig.json .
RUN npm install
COPY startup.sh .
COPY public public
COPY src src
ENTRYPOINT [ "/usr/bin/env", "./startup.sh" ]