mirror of
https://github.com/iv-org/instances-api.git
synced 2025-03-14 10:16:41 -04:00
20 lines
491 B
Docker
20 lines
491 B
Docker
FROM docker.io/crystallang/crystal:1.0.0-alpine AS builder
|
|
WORKDIR /app
|
|
COPY ./shard.yml ./shard.yml
|
|
RUN shards install
|
|
COPY ./src/ ./src/
|
|
RUN crystal build ./src/instances.cr --release
|
|
|
|
FROM alpine:latest
|
|
RUN apk add --no-cache gc pcre libgcc yaml
|
|
WORKDIR /app
|
|
RUN addgroup -g 1000 -S invidious && \
|
|
adduser -u 1000 -S invidious -G invidious
|
|
COPY ./assets/ ./assets/
|
|
COPY ./config.yml ./config.yml
|
|
COPY --from=builder /app/instances .
|
|
|
|
EXPOSE 3000
|
|
USER invidious
|
|
CMD ["/app/instances"]
|