testing
All checks were successful
Deploy Backend / docker (ubuntu-latest) (push) Successful in 48s
Deploy Website / docker (ubuntu-latest) (push) Successful in 2m22s

This commit is contained in:
Lee
2024-10-19 09:36:06 +01:00
parent 31f57cbe6b
commit 1f4be74c54
2 changed files with 83 additions and 45 deletions

View File

@ -27,4 +27,8 @@ COPY --from=depends /app/projects/backend ./projects/backend
# Lint before starting
RUN bun --filter 'backend' lint
ARG PORT=8080
ENV PORT $PORT
EXPOSE $PORT
CMD ["bun", "run", "--filter", "backend", "start"]