Dockerfile.production 316 B

12345678
  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. WORKDIR /porter
  5. COPY bin/app /porter/
  6. COPY bin/migrate /porter/
  7. COPY build/ /porter/static
  8. RUN chmod +x /porter/app /porter/migrate