generated from TBD54566975/tbd-project-template
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Dockerfile.provisioner
50 lines (38 loc) · 1.42 KB
/
Dockerfile.provisioner
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
FROM ubuntu:24.04 AS builder
RUN apt-get update
RUN apt-get install -y curl git zip
# Copy Hermit bin stubs and install all packages. This is done
# separately so that Docker will cache the tools correctly.
COPY ./bin /src/bin
ENV PATH="/src/bin:$PATH"
WORKDIR /src
# Seed some of the most common tools - this will be cached
RUN go version
RUN node --version
# Download Go dependencies separately so Docker will cache them
COPY go.mod go.sum ./
RUN go mod download -x
# Download PNPM dependencies separately so Docker will cache them
COPY frontend/console/package.json ./frontend/console/
COPY frontend/vscode/package.json ./frontend/vscode/
COPY pnpm-workspace.yaml pnpm-lock.yaml ./
RUN pnpm install --frozen-lockfile
# Build
COPY . /src/
RUN just errtrace
# Reset timestamps so that the build state is reset
RUN git ls-files -z | xargs -0 touch -r go.mod
RUN just build ftl-provisioner ftl-provisioner-cloudformation
# Finally create the runtime image.
FROM scratch
COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
WORKDIR /plugins/
COPY ftl-provisioner-config.toml /config/config.toml
COPY --from=builder /src/build/release/ftl-provisioner-cloudformation .
WORKDIR /service/
COPY --from=builder /src/build/release/ftl-provisioner .
EXPOSE 8893
ENV PATH="$PATH:/plugins/"
ENV FTL_PROVISIONER_BIND="http://0.0.0.0:8893"
ENV FTL_PROVISIONER_PLUGIN_CONFIG_FILE="/config/config.toml"
CMD ["/service/ftl-provisioner"]