File tree 3 files changed +38
-11
lines changed
3 files changed +38
-11
lines changed Original file line number Diff line number Diff line change 11
11
12
12
with :
13
13
compose-file : ' docker-compose.yml'
14
-
15
- - uses : actions/checkout@v2
16
- - uses : actions-rs/toolchain@v1
17
- with :
18
- toolchain : stable
19
- - run : cargo test
20
- env :
21
- ORIGIN_ADDRESS : ${{ secrets.ORIGIN_ADDRESS }}
22
-
23
- - run : cargo build --release --all-features
Original file line number Diff line number Diff line change
1
+ FROM lukemathwalker/cargo-chef:latest-rust-1.53.0 as planner
2
+ WORKDIR /app
3
+ COPY . .
4
+ RUN cargo chef prepare --recipe-path recipe.json
5
+
6
+ FROM lukemathwalker/cargo-chef:latest-rust-1.53.0 as cacher
7
+ WORKDIR /app
8
+ COPY --from=planner /app/recipe.json recipe.json
9
+ RUN cargo chef cook --release --recipe-path recipe.json
10
+
11
+ FROM rust:1.53.0 as builder
12
+ WORKDIR /app
13
+ COPY . .
14
+ # Copy over the cached dependencies
15
+ COPY --from=cacher /app/target target
16
+ COPY --from=cacher $CARGO_HOME $CARGO_HOME
17
+ RUN cargo build --release --bin ulink
18
+
19
+ FROM rust:1.53.0 as runtime
20
+ WORKDIR /app
21
+ COPY --from=builder /app/target/release/ulink /usr/local/bin
22
+ COPY Rocket.toml .
23
+ ENTRYPOINT ["/usr/local/bin/ulink" ]
Original file line number Diff line number Diff line change @@ -5,4 +5,18 @@ services:
5
5
image : redis
6
6
command : redis-server
7
7
ports :
8
- - " 6379:6379"
8
+ - " 6379:6379"
9
+ networks :
10
+ - backend
11
+
12
+ api :
13
+ build : .
14
+ ports :
15
+ - " 8000:8000"
16
+ networks :
17
+ - backend
18
+ environment :
19
+ - ORIGIN_ADDRESS=http://localhost:3000
20
+
21
+ networks :
22
+ backend:
You can’t perform that action at this time.
0 commit comments