Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# BinaryBuilder Docker environment for building libsemigroups_jll
# BinaryBuilder requires Julia 1.7
FROM julia:1.7

# Install required system dependencies
RUN apt-get update && apt-get install -y \
git \
curl \
wget \
&& rm -rf /var/lib/apt/lists/*

# Set up Julia depot path
ENV JULIA_DEPOT_PATH=/root/.julia

# Install and Precompile BinaryBuilder.jl
RUN julia -e 'using Pkg; Pkg.add("BinaryBuilder"); using BinaryBuilder'

# Set working directory
WORKDIR /workspace

# Copy the build script
COPY build_tarballs.jl /workspace/

# Default command shows help
CMD ["julia", "--help"]
Loading