2021-12-27 02:21:46 +00:00
|
|
|
FROM nimlang/nim:1.6.2-alpine-regular as nim
|
2020-10-01 03:41:47 +00:00
|
|
|
LABEL maintainer="setenforce@protonmail.com"
|
2019-10-10 17:55:16 +00:00
|
|
|
EXPOSE 8080
|
|
|
|
|
2021-12-27 03:10:44 +00:00
|
|
|
RUN apk --no-cache add libsass-dev
|
2020-11-07 10:28:54 +00:00
|
|
|
|
2019-10-10 17:55:16 +00:00
|
|
|
COPY . /src/nitter
|
|
|
|
WORKDIR /src/nitter
|
|
|
|
|
2021-12-27 02:21:46 +00:00
|
|
|
RUN nimble build -y -d:release -d:danger --passC:"-flto" --passL:"-flto" \
|
2019-10-21 04:17:08 +00:00
|
|
|
&& strip -s nitter \
|
2019-10-12 18:29:55 +00:00
|
|
|
&& nimble scss
|
2019-10-10 17:55:16 +00:00
|
|
|
|
2020-10-01 03:41:47 +00:00
|
|
|
FROM alpine:latest
|
2019-10-10 17:55:16 +00:00
|
|
|
WORKDIR /src/
|
2021-12-27 03:10:44 +00:00
|
|
|
RUN apk --no-cache add pcre
|
2021-12-27 02:21:46 +00:00
|
|
|
COPY --from=nim /src/nitter/nitter ./
|
|
|
|
COPY --from=nim /src/nitter/nitter.example.conf ./nitter.conf
|
2019-10-21 04:17:08 +00:00
|
|
|
COPY --from=nim /src/nitter/public ./public
|
2020-10-01 03:41:47 +00:00
|
|
|
CMD ./nitter
|