Skip to content

Commit

Permalink
idk how to count
Browse files Browse the repository at this point in the history
  • Loading branch information
Luxxy-GF committed Nov 5, 2023
1 parent 4cd857b commit 0c10477
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ jobs:
matrix:
tag:
- 12
- 13
- 14
- 15
- 16
Expand Down
14 changes: 14 additions & 0 deletions 13/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
FROM node:13-buster-slim

RUN apt update \
&& apt -y install ffmpeg iproute2 git sqlite3 python3 tzdata ca-certificates dnsutils build-essential make gcc g++ \
&& npm -g install npm@latest \
&& useradd -m -d /home/container container

USER container
ENV USER=container HOME=/home/container
WORKDIR /home/container

COPY ./entrypoint.sh /entrypoint.sh
COPY --chmod=777 ./start.sh /start.sh
CMD [ "/bin/bash", "/entrypoint.sh" ]

0 comments on commit 0c10477

Please sign in to comment.