-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Dockerfile
33 lines (23 loc) · 1.07 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
####################################################################################################
## Builder
####################################################################################################
FROM rust:alpine AS builder
RUN apk add --no-cache musl-dev
WORKDIR /intellectual
COPY . .
# Set environment variables so the build has git info
RUN export $(cat .env | xargs) && cargo build --release
####################################################################################################
## Final image
####################################################################################################
FROM alpine:latest
# Copy our build
COPY --from=builder /intellectual/target/release/intellectual /usr/local/bin/intellectual
# Use an unprivileged user
RUN adduser --home /nonexistent --no-create-home --disabled-password intellectual
USER intellectual
# Tell Docker to expose port 8080
EXPOSE 8080/tcp
# Run a healthcheck every 5 minutes
HEALTHCHECK --interval=5m --timeout=5s CMD wget --tries=1 --spider http://localhost:8080 || exit 1
CMD ["intellectual"]