40d17bf042
nimlang/nim's alpine-regular images cap at 2.2.6 and are now multi-arch, while Alpine's apk nim is stuck at the segfaulting 2.2.0. Base both arches on 2.2.6-alpine-regular, drop the separate Dockerfile.arm64, and build ./Dockerfile in the arm64 CI job. Fixes #1404
26 lines
619 B
Docker
26 lines
619 B
Docker
FROM nimlang/nim:2.2.6-alpine-regular as nim
|
|
LABEL maintainer="setenforce@protonmail.com"
|
|
|
|
RUN apk --no-cache add libsass-dev pcre
|
|
|
|
WORKDIR /src/nitter
|
|
|
|
COPY nitter.nimble .
|
|
RUN nimble install -y --depsOnly
|
|
|
|
COPY . .
|
|
RUN nimble build -d:danger -d:lto -d:strip --mm:refc \
|
|
&& nimble scss \
|
|
&& nimble md
|
|
|
|
FROM alpine:latest
|
|
WORKDIR /src/
|
|
RUN apk --no-cache add pcre ca-certificates openssl
|
|
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
|