mirror of
https://github.com/zedeus/nitter.git
synced 2024-10-31 22:08:50 +00:00
204b3e9e78
Closes #369 Closes #426
20 lines
517 B
Docker
20 lines
517 B
Docker
FROM nimlang/nim:1.6.2-alpine-regular as nim
|
|
LABEL maintainer="setenforce@protonmail.com"
|
|
EXPOSE 8080
|
|
|
|
RUN apk --no-cache add libsass-dev
|
|
|
|
COPY . /src/nitter
|
|
WORKDIR /src/nitter
|
|
|
|
RUN nimble build -y -d:release -d:danger --passC:"-flto" --passL:"-flto" \
|
|
&& strip -s nitter \
|
|
&& nimble scss
|
|
|
|
FROM alpine:latest
|
|
WORKDIR /src/
|
|
RUN apk --no-cache add pcre
|
|
COPY --from=nim /src/nitter/nitter ./
|
|
COPY --from=nim /src/nitter/nitter.example.conf ./nitter.conf
|
|
COPY --from=nim /src/nitter/public ./public
|
|
CMD ./nitter
|