mirror of
https://github.com/iv-org/instances-api.git
synced 2024-10-01 04:35:38 -04:00
19 lines
455 B
Docker
19 lines
455 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
|
|
WORKDIR /app
|
|
RUN addgroup -g 1000 -S invidious && \
|
|
adduser -u 1000 -S invidious -G invidious
|
|
COPY ./assets/ ./assets/
|
|
COPY --from=builder /app/instances .
|
|
|
|
EXPOSE 3000
|
|
USER invidious
|
|
CMD ["/app/instances"]
|