Initial commit
All checks were successful
continuous-integration/drone Build is passing

This commit is contained in:
2022-12-12 22:56:14 +02:00
commit 8183adc15e
10 changed files with 404 additions and 0 deletions

19
Dockerfile Normal file
View File

@@ -0,0 +1,19 @@
# pull official node image
FROM harbor.k-space.ee/docker.io/library/node:19
# define /app as working directory
WORKDIR /app
# copy package.json and package-lock.json to /app
COPY package.json /app
# COPY bun.lockb /app
# install node dependencies
# RUN bun install
RUN yarn install --production
COPY . /app
# bun install doesnt work in Docker for some reason: https://github.com/oven-sh/bun/issues/1590
FROM jarredsumner/bun:0.2.0 AS run
COPY --from=0 /app /app
ENTRYPOINT bun run index.ts