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
17 changes: 17 additions & 0 deletions defcon-quals-2025/CICD/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Use the official Elixir image
FROM elixir:latest

# Set the working directory inside the container
WORKDIR /app

# Install Hex and Rebar (build tools for Elixir)
RUN mix local.hex --force && \
mix local.rebar --force

# Start the container in interactive mode

# Copy the application files into the container
COPY dist/ /app
RUN chmod +x -R /app
# Set the environment variable
CMD ["bash"]
Loading