-
Notifications
You must be signed in to change notification settings - Fork 0
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
be8d836
commit 74a6397
Showing
2 changed files
with
7 additions
and
12 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
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,19 +2,11 @@ FROM node:20.4.0 | |
|
||
LABEL Eiriksgata <[email protected]> | ||
|
||
WORKDIR /app | ||
|
||
VOLUME /tmp/control-pltform-client-vue-nuxt3/ | ||
|
||
COPY package.json /app/ | ||
|
||
ADD . /app/ | ||
|
||
RUN yarn build | ||
ADD .output .output | ||
|
||
# expose the host and port 3000 to the server | ||
ENV HOST 0.0.0.0 | ||
# Expose Port | ||
EXPOSE 15368 | ||
EXPOSE 3000 | ||
|
||
ENTRYPOINT ["node", "./.output/server/index.mjs"] | ||
ENTRYPOINT ["node", ".output/server/index.mjs"] |