added user and role APIs and fixed some items that were missing (#3)
Reviewed-on: #3 Co-authored-by: Joseph Nelson <joseph.nelson4456@gmail.com> Co-committed-by: Joseph Nelson <joseph.nelson4456@gmail.com>
This commit was merged in pull request #3.
This commit is contained in:
+12
@@ -1,8 +1,20 @@
|
||||
FROM node:24-alpine
|
||||
|
||||
ARG DATABASE_URL
|
||||
ARG DB_HOST
|
||||
ARG DB_USERNAME
|
||||
ARG DB_PASSWORD
|
||||
ARG DB_PORT
|
||||
ARG DB_DATABASE
|
||||
ARG JWT_SECRET
|
||||
|
||||
ENV DATABASE_URL=${DATABASE_URL}
|
||||
ENV DB_HOST=${DB_HOST}
|
||||
ENV DB_USERNAME=${DB_USERNAME}
|
||||
ENV DB_PASSWORD=${DB_PASSWORD}
|
||||
ENV DB_PORT=${DB_PORT}
|
||||
ENV DB_DATABASE=${DB_DATABASE}
|
||||
ENV JWT_SECRET=${JWT_SECRET}
|
||||
|
||||
WORKDIR /app
|
||||
COPY . .
|
||||
|
||||
Reference in New Issue
Block a user