-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
90 lines (71 loc) · 2.89 KB
/
Dockerfile
File metadata and controls
90 lines (71 loc) · 2.89 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
# ================================
# Frontend Build Stage
# ================================
FROM node:20 AS frontend-build
WORKDIR /app
COPY package.json yarn.lock ./
RUN yarn install
COPY index.html .
COPY tailwind.config.js .
COPY svelte.config.js .
COPY vite.config.js .
COPY Frontend/ ./Frontend/
RUN yarn build
# ================================
# Build image
# ================================
FROM swift:6.1-bookworm AS build
# Install OS updates
RUN export DEBIAN_FRONTEND=noninteractive DEBCONF_NONINTERACTIVE_SEEN=true \
&& apt-get -q update \
&& apt-get -q dist-upgrade -y \
&& apt-get install -y libjemalloc-dev
# Set up a build area
WORKDIR /build
# First just resolve dependencies.
# This creates a cached layer that can be reused
# as long as your Package.swift/Package.resolved
# files do not change.
COPY ./Package.* ./
RUN swift package resolve \
$([ -f ./Package.resolved ] && echo "--force-resolved-versions" || true)
# Copy entire repo into container
COPY . .
# Copy built frontend assets from the frontend-build stage
COPY --from=frontend-build /app/Public ./Public
# Build the application, with optimizations, with static linking, and using jemalloc
# N.B.: The static version of jemalloc is incompatible with the static Swift runtime.
RUN swift build -c release \
--product hooklab \
--static-swift-stdlib \
-Xlinker -ljemalloc
# Switch to the staging area
WORKDIR /staging
# Copy main executable to staging area
RUN cp "$(swift build --package-path /build -c release --show-bin-path)/hooklab" ./
# Copy static swift backtracer binary to staging area
RUN cp "/usr/libexec/swift/linux/swift-backtrace-static" ./
# Copy resources bundled by SPM to staging area
RUN find -L "$(swift build --package-path /build -c release --show-bin-path)/" -regex '.*\.resources$' -exec cp -Ra {} ./ \;
RUN mkdir -p /staging/lib
RUN cp /usr/lib/$(uname -m)-linux-gnu/libjemalloc.so.2 /staging/lib/
RUN cp /usr/lib/$(uname -m)-linux-gnu/libz.so.1 /staging/lib/
# ================================
# Run image
# ================================
FROM gcr.io/distroless/cc-debian12
# Copy required libraries from the build stage to a generic location
COPY --from=build /staging/lib/* /usr/local/lib/
# Set the working directory
WORKDIR /app
# Copy built executable and any staged resources from builder
# The nonroot user has UID 65532.
COPY --from=build --chown=65532:65532 /staging /app
# Provide configuration needed by the built-in crash reporter and some sensible default behaviors.
ENV SWIFT_BACKTRACE=enable=yes,sanitize=yes,threads=all,images=all,interactive=no,swift-backtrace=./swift-backtrace-static
ENV LD_LIBRARY_PATH=/usr/local/lib
# Let Docker bind to port 8080
EXPOSE 8080
# Start the Vapor service when the image is run, default to listening on 8080 in production environment
ENTRYPOINT ["./hooklab"]
CMD ["serve", "--env", "production", "--hostname", "0.0.0.0", "--port", "8080"]