File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed
Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change 11# Container image built by go-releaser that's used to run migrations against the database during deployment
22# See https://atlasgo.io/guides/deploying/image
3- FROM arigaio/atlas@sha256:5c459e8c134bb3d6d4f0346bbe6aa32ab23b7726286c4f23e7d831557574ed0d
3+ FROM arigaio/atlas@sha256:5c459e8c134bb3d6d4f0346bbe6aa32ab23b7726286c4f23e7d831557574ed0d as base
44
5+ FROM scratch
6+ # Update permissions to make it readable by the user
7+ # Otherwise the permissions are 001 which is not compatible with openshift in the default configuration
8+ # https://github.com/chainloop-dev/chainloop/issues/922
9+ COPY --from=base --chmod=555 /atlas /
510COPY app/controlplane/pkg/data/ent/migrate/migrations /migrations
611
712USER 1001
13+
14+ ENTRYPOINT ["/atlas"]
You can’t perform that action at this time.
0 commit comments