forked from PrivacyDevel/nitter
-
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.
Add Dockerfile for arm64 (zedeus#762)
- Loading branch information
Showing
1 changed file
with
23 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
FROM alpine:3.17 as nim | ||
LABEL maintainer="[email protected]" | ||
|
||
RUN apk --no-cache add gcc git libc-dev libsass-dev "nim=1.6.8-r0" nimble pcre | ||
|
||
WORKDIR /src/nitter | ||
|
||
COPY nitter.nimble . | ||
RUN nimble install -y --depsOnly | ||
|
||
COPY . . | ||
RUN nimble build -d:danger -d:lto -d:strip \ | ||
&& nimble scss \ | ||
&& nimble md | ||
|
||
FROM alpine:3.17 | ||
WORKDIR /src/ | ||
RUN apk --no-cache add pcre ca-certificates | ||
COPY --from=nim /src/nitter/nitter ./ | ||
COPY --from=nim /src/nitter/nitter.example.conf ./nitter.conf | ||
COPY --from=nim /src/nitter/public ./public | ||
EXPOSE 8080 | ||
CMD ./nitter |