-
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.
- Loading branch information
Showing
3 changed files
with
53 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
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,24 @@ | ||
FROM alpine:3.18 as nim | ||
|
||
RUN apk --no-cache add libsass-dev pcre gcc git libc-dev "nim=1.6.14-r0" "nimble=0.13.1-r2" | ||
|
||
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.18 | ||
WORKDIR /src/ | ||
RUN apk --no-cache add pcre ca-certificates openssl1.1-compat | ||
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 | ||
RUN adduser -h /src/ -D -s /bin/sh nitter | ||
USER nitter | ||
CMD ./nitter |
Empty file.