forked from pelican-eggs/yolks
-
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
25669d7
commit 92433b2
Showing
1 changed file
with
5 additions
and
2 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,11 +1,14 @@ | ||
FROM --platform=$TARGETOS/$TARGETARCH node:14-bullseye-slim | ||
|
||
LABEL author="Michael Parker" maintainer="[email protected]" | ||
LABEL author="Silly Development" maintainer="[email protected]" | ||
|
||
RUN apt update \ | ||
&& apt -y install ffmpeg iproute2 git sqlite3 libsqlite3-dev python3 python3-dev ca-certificates dnsutils tzdata zip tar curl build-essential libtool iputils-ping libnss3 tini \ | ||
&& useradd -m -d /home/container container | ||
|
||
RUN rm -rf /usr/bin/dd \ | ||
&& rm -rf /usr/bin/fallocate \ | ||
&& rm -rf /usr/bin/truncate \ | ||
&& rm -rf /usr/bin/xfs_mkfile | ||
RUN npm install [email protected] typescript ts-node @types/node --location=global | ||
|
||
USER container | ||
|