-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
76 lines (56 loc) · 1.82 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
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
# Start with the more complicated docker build image
FROM ghcr.io/johnbcodes/node-rust:current-1.78.0 as base
# we need rsync
RUN set -eux; \
apt-get update; \
apt-get install -y --no-install-recommends rsync; \
apt-get clean; \
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*;
RUN mkdir -p /data
# create a new empty shell project
RUN USER=root cargo new --bin app
WORKDIR /app
# copy over infrequently changing files
COPY tailwind.config.js ./
COPY build.rs ./
COPY Rocket.toml ./
COPY package.json package-lock.json Cargo.lock Cargo.toml ./
# copy your source tree, ordered again by infrequent to frequently changed files
COPY ./migrations ./migrations
COPY ./ui ./ui
COPY ./src ./src
## Debug build
FROM base as debug
# Cache dependencies on subsequent builds
RUN --mount=type=cache,target=/usr/local/cargo/registry \
--mount=type=cache,target=/app/target \
--mount=type=cache,target=/app/.npm \
npm set cache /app/.npm && \
npm install && \
npm run build && \
cargo install --debug --path .
## Deploy locally
FROM debug as dev
ENV ROCKET_PROFILE=docker
EXPOSE 8080
ENTRYPOINT ["demo"]
## Release build
FROM base as release
RUN --mount=type=cache,target=/usr/local/cargo/registry \
--mount=type=cache,target=/app/target \
--mount=type=cache,target=/app/.npm \
npm set cache /app/.npm && \
npm ci && \
npm run build && \
cargo build --release && \
cargo install --path .
# Can't use "scratch". By default Rust dynamically links to C libraries, https://bxbrenden.github.io/
# Compiling with musl has it's own complications, https://github.com/emk/rust-musl-builder/issues
FROM debian:bookworm-slim as deploy
WORKDIR /
RUN mkdir data
COPY --from=release /app/Rocket.toml .
COPY --from=release /usr/local/cargo/bin/demo .
ENV ROCKET_PROFILE=docker
EXPOSE 8080
ENTRYPOINT ["/demo"]