Openstatus www.openstatus.dev
6
fork

Configure Feed

Select the types of activity you want to include in your feed.

๐Ÿ› env (#1019)

authored by

Thibault Le Ouay and committed by
GitHub
79fdad1d e829fa0a

+3 -1
+1
apps/server/Dockerfile
··· 29 29 # build 30 30 FROM oven/bun@sha256:eb409bed239c3adff079a6b71283f151e802d66b99f643ba7a71e1be7d3da513 AS build 31 31 WORKDIR /app/apps/server 32 + ENV NODE_ENV production 32 33 COPY \ 33 34 --link \ 34 35 "." "/app/"
+2 -1
apps/server/dofigen.yml
··· 35 35 build: 36 36 fromImage: oven/bun 37 37 workdir: /app/apps/server 38 - copy: 38 + copy: 39 39 - . /app/ 40 40 - fromBuilder: install 41 41 source: /app/node_modules 42 42 target: /app/node_modules 43 + # Should set env to production here 43 44 # Compile the TypeScript application 44 45 run: bun build --compile --sourcemap src/index.ts --outfile=app 45 46 fromImage: debian:bullseye-slim