docker based deployment

This commit is contained in:
DecDuck
2024-11-04 20:50:35 +11:00
parent 5fe2036f0b
commit c5d00b4766
7 changed files with 95 additions and 17 deletions

27
Dockerfile Normal file
View File

@ -0,0 +1,27 @@
# pull pre-configured and updated build environment
FROM registry.deepcore.dev/drop-oss/drop-server-build-environment/main:latest AS build-system
# setup workdir
RUN mkdir /build
WORKDIR /build
# install dependencies and build
COPY . .
RUN yarn install
RUN yarn build
# create run environment for Drop
FROM node:lts-slim AS run-system
RUN mkdir /app
WORKDIR /app
COPY --from=build-system /build/.output ./app
COPY --from=build-system /build/prisma ./prisma
COPY --from=build-system /build/build ./startup
# OpenSSL as a dependency for Drop (TODO: seperate build environment)
RUN apt-get update -y && apt-get install -y openssl
RUN yarn global add prisma
CMD ["/app/startup/launch.sh"]