Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
AnonCatalyst authored Aug 7, 2024
1 parent b20065f commit d8618b7
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Dockerfile for Arch Linux
FROM archlinux:latest

# Install Python and other dependencies
RUN pacman -Syu --noconfirm \
&& pacman -S --noconfirm python python-pip python-setuptools python-wheel \
&& pip install --upgrade pip \
&& pip install build twine

# Set working directory
WORKDIR /app

# Copy the package files
COPY . .

# Command to build the package
CMD ["python", "-m", "build"]

0 comments on commit d8618b7

Please sign in to comment.