Compare commits

..

No commits in common. "bf451978f72ed4aad5a63a3edfe5e7d31238c9ff" and "1b8d78df0c166803fd6275c0e14b093ee7e2af42" have entirely different histories.

2 changed files with 3 additions and 3 deletions

View file

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

View file

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