-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
48 lines (40 loc) · 2.15 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
################################################################################
# Set the base image for use
FROM rust:latest
################################################################################
################################################################################
# Set Offline SQLX handling (optional)
ENV SQLX_OFFLINE=true
################################################################################
################################################################################
# Set Rust environment variable (optional)
# ENV RUST_BACKTRACE=1
################################################################################
################################################################################
# The name is customizable. Just make sure it isn't just `/`
WORKDIR /app
################################################################################
################################################################################
# Copy all of the project files
################################################################################
COPY . .
################################################################################
# This makes the database volume that you're supposed to have from the README.md
################################################################################
### ```sh
### sudo docker volume create --name database
### ```
################################################################################
VOLUME [ "/database" ]
################################################################################
# Install dependencies
################################################################################
RUN cargo install --locked --path .
################################################################################
# Build the project in release mode
################################################################################
RUN cargo build --release
################################################################################
# Set the command to run the application
################################################################################
CMD ["cargo", "run", "--release"]