Skip to content

Commit

Permalink
added containerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
FerrisWasTaken committed Mar 20, 2024
1 parent 3af2976 commit 0f9e021
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ Cargo.lock
!.vscode/*.code-snippets
.history/
*.vsix
.vscode

# Packaging
/packaging/**/pkg
Expand Down
9 changes: 9 additions & 0 deletions Containerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
FROM archlinux:latest

# Install Rust
RUN pacman -Sy --noconfirm rustup cargo
# Toolchain setup
RUN rustup self upgrade-data
RUN rustup default nightly-2024-03-17
# Project dependencies
RUN pacman -S --noconfirm gdk-pixbuf2 pango gtk4 pkg-config

0 comments on commit 0f9e021

Please sign in to comment.