-
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 status checks…
node-bootstrap-5.3.3
Showing
6 changed files
with
43 additions
and
19 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
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
FROM node:22-alpine | ||
EXPOSE 8850/tcp | ||
WORKDIR /app | ||
|
||
RUN npm install http-server -g && \ | ||
npm install [email protected] [email protected] [email protected] [email protected] [email protected] | ||
RUN mv /app/node_modules/aceberg-bootswatch-fork /app/node_modules/bootswatch &&\ | ||
mkdir -p /app/icons &&\ | ||
apk add --no-cache bash | ||
|
||
COPY node-bootstrap/download-fonts.sh /download-fonts.sh | ||
RUN bash /download-fonts.sh /app/node_modules/bootswatch | ||
|
||
ENTRYPOINT ["http-server"] | ||
CMD ["--cors", "-p", "8850"] |
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 |
---|---|---|
|
@@ -6,16 +6,23 @@ | |
http-server hosting node modules for my projects locally | ||
|
||
# Tags | ||
[5.3.2-a](https://github.com/aceberg/my-dockerfiles/blob/main/node-bootstrap/Dockerfile-5.3.2-a), [latest](https://github.com/aceberg/my-dockerfiles/blob/main/node-bootstrap/Dockerfile-5.3.2-a): | ||
- [email protected] | ||
- [email protected] | ||
- [my fork](https://github.com/aceberg/aceberg-bootswatch-fork) of [email protected] (more themes) with google fonts | ||
- [email protected] | ||
- [email protected] | ||
|
||
<a href="https://github.com/aceberg/my-dockerfiles/blob/main/node-bootstrap/Dockerfile-5.3.3">5.3.3</a>, latest: | ||
<li>[email protected]</li> | ||
<li>[email protected]</li> | ||
<li><a href="https://github.com/aceberg/aceberg-bootswatch-fork">my fork</a> of [email protected] (more themes) with google fonts</li> | ||
<li>[email protected]</li> | ||
<li>[email protected]</li> | ||
|
||
<details> | ||
<summary>Old tags</summary> | ||
<a href="https://github.com/aceberg/my-dockerfiles/blob/main/node-bootstrap/Dockerfile-5.3.0">5.3.2</a>:<br> | ||
<a href="https://github.com/aceberg/my-dockerfiles/blob/main/node-bootstrap/Dockerfile-5.3.2-a">5.3.2-a</a>:<br> | ||
<li>[email protected]</li> | ||
<li>[email protected]</li> | ||
<li><a href="https://github.com/aceberg/aceberg-bootswatch-fork">my fork</a> of [email protected] (more themes) with google fonts</li> | ||
<li>[email protected]</li> | ||
<li>[email protected]</li> | ||
<a href="https://github.com/aceberg/my-dockerfiles/blob/main/node-bootstrap/Dockerfile-5.3.2">5.3.2</a>:<br> | ||
<li>[email protected]</li> | ||
<li>[email protected]</li> | ||
<li>[email protected] with google fonts</li> | ||
|
@@ -35,9 +42,11 @@ docker run --name node-bootstrap \ | |
``` | ||
|
||
## Supported apps | ||
- [ClickAHabit](https://github.com/aceberg/ClickAHabit) | ||
- [ExerciseDiary](https://github.com/aceberg/ExerciseDiary) | ||
- [miniboard](https://github.com/aceberg/miniboard) | ||
- [WatchYourLAN](https://github.com/aceberg/WatchYourLAN) | ||
- [WatchYourPorts](https://github.com/aceberg/WatchYourPorts) | ||
|
||
## GitHub | ||
|
||
|
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 +1 @@ | ||
VERSION=5.3.2-a | ||
VERSION=5.3.3 |