This repository has been archived by the owner on Oct 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: local docker compose development (#124)
* fix: local docker compose development * chore: update Dockerfile.dev for local development
- Loading branch information
1 parent
bf61dbd
commit a4be36c
Showing
2 changed files
with
13 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
ARG NODE_VERSION=22 | ||
FROM node:${NODE_VERSION} AS builder | ||
WORKDIR /usr/src/app | ||
|
||
COPY . . | ||
|
||
RUN npm ci | ||
|
||
EXPOSE 3000 | ||
|
||
CMD npm run db:dev:migrate && npm run db:dev:seed && npm run dev |
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