Dockerfile.job 288 B

123456789
  1. # This Dockerfile is used for building a base image with curl installed
  2. # and is intended to be used via a Porter job to call the worker pool
  3. # HTTP endpoints in order to enqueue different kinds of jobs
  4. # Runtime environment
  5. FROM alpine:3.16
  6. WORKDIR /app
  7. RUN apk update && apk add curl