v12.0.0 - initial commit
This commit is contained in:
commit
e2c49ea43c
1145 changed files with 97211 additions and 0 deletions
17
build/server.Dockerfile
Normal file
17
build/server.Dockerfile
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
FROM node:22-bullseye AS base
|
||||
RUN apt install openssl ca-certificates
|
||||
|
||||
WORKDIR /lamassu-server
|
||||
|
||||
# Copy the pre-built production package from CI (with node_modules)
|
||||
COPY . ./
|
||||
|
||||
FROM base AS l-s
|
||||
RUN chmod +x /lamassu-server/bin/lamassu-server-entrypoint.sh
|
||||
EXPOSE 3000
|
||||
ENTRYPOINT [ "/lamassu-server/bin/lamassu-server-entrypoint.sh" ]
|
||||
|
||||
FROM base AS l-a-s
|
||||
RUN chmod +x /lamassu-server/bin/lamassu-admin-server-entrypoint.sh
|
||||
EXPOSE 443
|
||||
ENTRYPOINT [ "/lamassu-server/bin/lamassu-admin-server-entrypoint.sh" ]
|
||||
Loading…
Add table
Add a link
Reference in a new issue