-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
75711b3
commit 9a1f29b
Showing
2 changed files
with
3 additions
and
5 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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: Build and Push Image | ||
name: Build and Publish | ||
|
||
on: | ||
push: | ||
|
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 |
---|---|---|
|
@@ -11,10 +11,8 @@ COPY tsconfig.json /app/tsconfig.json | |
RUN npm install | ||
RUN npm install [email protected] | ||
Check failure on line 12 in Dockerfile
|
||
|
||
RUN mkdir .cache | ||
RUN chown -R 65532:65532 "/app/.cache" | ||
ENV npm_config_cache="/app/.cache" | ||
RUN mkdir .cache && chown -R 65532:65532 "/app/.cache" | ||
|
||
EXPOSE 5173:5173 | ||
ENV npm_config_cache="/app/.cache" | ||
|
||
CMD ["npm", "start"] |