Skip to content

Commit c1766e3

Browse files
committed
Compile rust in Docker
1 parent fdee0f3 commit c1766e3

File tree

3 files changed

+38
-11
lines changed

3 files changed

+38
-11
lines changed

.github/workflows/rust.yml

-10
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,3 @@ jobs:
1111
- uses: isbang/[email protected]
1212
with:
1313
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

Dockerfile

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
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"]

docker-compose.yml

+15-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,18 @@ services:
55
image: redis
66
command: redis-server
77
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:

0 commit comments

Comments
 (0)