-
-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build api with esbuild, remove babel
- Loading branch information
1 parent
ce7fe08
commit bfcde50
Showing
7 changed files
with
247 additions
and
1,143 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,3 +5,4 @@ client/.next | |
data/ | ||
config.js | ||
.DS_Store | ||
dist/ |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,8 +2,9 @@ FROM node:16-alpine | |
ENV NODE_ENV=production | ||
ENV SENTRY_DSN="https://[email protected]/4504645996576768" | ||
LABEL org.opencontainers.image.source=https://github.com/tdjsnelling/sqtracker | ||
WORKDIR /sqtracker/app | ||
WORKDIR /sqtracker/api | ||
COPY . . | ||
RUN yarn | ||
RUN yarn install | ||
RUN yarn build | ||
EXPOSE 3001 | ||
CMD yarn start | ||
CMD yarn start |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters