2
0

Dockerfile.production 398 B

12345678910
  1. # All build artifacts are built in github actions, and copied in
  2. # Ubuntu is used to match Github action, and use github action caching instead of docker caching
  3. FROM ubuntu as runner
  4. RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates
  5. WORKDIR /porter
  6. COPY bin/app /porter/
  7. COPY bin/migrate /porter/
  8. COPY build/ /porter/static
  9. RUN chmod +x /porter/app /porter/migrate