forked from conaticus/FileExplorer
- Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDockerfile
More file actions
Latest commit
23 lines (16 loc) · 433 Bytes
/
Copy pathDockerfile
File metadata and controls
23 lines (16 loc) · 433 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
FROM rust:latest
RUN apt-get update && apt-get install -y \
libwebkit2gtk-4.1-dev \
libgtk-3-dev \
libjavascriptcoregtk-4.1-dev \
libsoup-3.0-dev \
pkg-config \
build-essential \
&& rm -rf /var/lib/apt/lists/*
# Set the working directory
WORKDIR /app
# Copy the current directory contents into the container at /app
COPY . .
WORKDIR /app/src-tauri
RUN cargo install tauri-cli
CMD ["cargo", "test"]