-
-
Notifications
You must be signed in to change notification settings - Fork 212
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
b7de63b
commit c8cc088
Showing
1 changed file
with
1 addition
and
9 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 |
---|---|---|
|
@@ -3,9 +3,7 @@ ARG image=zwave-js-ui | |
FROM alpine:3.18.4 as base | ||
|
||
RUN apk add --no-cache \ | ||
libstdc++ \ | ||
openssl \ | ||
libgcc \ | ||
libusb \ | ||
tzdata \ | ||
eudev \ | ||
|
@@ -17,11 +15,7 @@ WORKDIR /usr/src/app | |
FROM base AS build-zui | ||
|
||
RUN apk --no-cache add \ | ||
coreutils \ | ||
jq \ | ||
linux-headers \ | ||
alpine-sdk \ | ||
python3 \ | ||
jq make gcc g++ python3 linux-headers \ | ||
npm=9.6.6-r0 | ||
|
||
RUN npm install --global [email protected] | ||
|
@@ -84,8 +78,6 @@ ENV TAG_NAME=${image_name} | |
|
||
ENV NODE_ENV=production | ||
|
||
WORKDIR /usr/src/app | ||
|
||
EXPOSE 8091 | ||
|
||
CMD ["node", "server/bin/www"] |