Compare commits

...

2 commits

Author SHA1 Message Date
bf451978f7 doc: Update TLDR 2025-06-10 21:10:15 +02:00
b2e151f738 add curl so healthcheck works 2025-06-10 21:09:37 +02:00
2 changed files with 3 additions and 3 deletions

View file

@ -6,7 +6,7 @@ WORKDIR /app
# Install system dependencies
RUN apt-get update && apt-get install -y \
build-essential \
build-essential curl \
&& rm -rf /var/lib/apt/lists/*
# Copy Gemfile and Gemfile.lock

View file

@ -6,6 +6,6 @@ cd no-as-a-service
bundle install
ruby app.rb
# Or build container:
podman build -t naas .
# Or build container, format docker so healthcheck works:
podman build --format=docker -t naas .
podman run -p 4567:4567 naas