Skip to content

Commit

Permalink
Fixed whitespace in Dockerfile and removed
Browse files Browse the repository at this point in the history
trailing comma in users.ts.
  • Loading branch information
hawkishpolicy committed Apr 9, 2024
1 parent c66bfcd commit 25d5e5a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion backend/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM node:18-alpine3.17
USER root

RUN apk update && apk upgrade
RUN apk update && apk upgrade

WORKDIR /app
COPY ./package* ./
Expand Down
2 changes: 1 addition & 1 deletion backend/src/api/users.ts
Original file line number Diff line number Diff line change
Expand Up @@ -932,7 +932,7 @@ export const RSCRegister = wrapHandler(async (event) => {
firstName: body.firstName,
lastName: body.lastName,
email: body.email.toLowerCase(),
userType: UserType.READY_SET_CYBER,
userType: UserType.READY_SET_CYBER
};

await connectToDatabase();
Expand Down

0 comments on commit 25d5e5a

Please sign in to comment.