mirror of
https://github.com/zedeus/nitter.git
synced 2024-10-31 22:08:50 +00:00
23 lines
581 B
Docker
23 lines
581 B
Docker
FROM alpine:3.17 as nim
|
|
LABEL maintainer="setenforce@protonmail.com"
|
|
|
|
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 ca-certificates pcre 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
|
|
CMD ./nitter
|