forked from mat/besticon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
41 lines (34 loc) · 1.19 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
34
35
36
37
38
39
40
41
# Adapted from
# https://cloud.google.com/run/docs/quickstarts/build-and-deploy#containerizing
# Use the offical Golang image to create a build artifact.
# https://hub.docker.com/_/golang
FROM golang:1.22 as builder
# Copy local code to the container image.
WORKDIR /app
COPY . .
# Build the command inside the container.
# (You may fetch or manage dependencies here,
# either manually or with a tool like "godep".)
RUN make build_linux_amd64
# Use a Docker multi-stage build to create a lean production image.
# https://docs.docker.com/develop/develop-images/multistage-build/#use-multi-stage-builds
FROM alpine:3.18
# Copy the binary to the production image from the builder stage.
COPY --from=builder /app/bin/linux_amd64/iconserver /iconserver
ENV ADDRESS=''
ENV CACHE_SIZE_MB=32
ENV CORS_ENABLED=false
ENV CORS_ALLOWED_HEADERS=''
ENV CORS_ALLOWED_METHODS=''
ENV CORS_ALLOWED_ORIGINS=''
ENV CORS_ALLOW_CREDENTIALS=''
ENV CORS_DEBUG=''
ENV HOST_ONLY_DOMAINS=*
ENV HTTP_CLIENT_TIMEOUT=5s
ENV HTTP_MAX_AGE_DURATION=720h
ENV HTTP_USER_AGENT=''
ENV POPULAR_SITES=bing.com,github.com,instagram.com,reddit.com
ENV PORT=8080
ENV SERVER_MODE=redirect
# Run the web service on container startup.
CMD ["/iconserver"]