mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-08-16 15:57:22 +00:00

* Run as part of gitlab:assets:compile job * Will be used by omnibus-gitlab and the CNG images to avoid compiling multiple times https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/22235
5 lines
103 B
Docker
5 lines
103 B
Docker
# Simple container to store assets for later use
|
|
FROM scratch
|
|
ADD public/assets /assets/
|
|
CMD /bin/true
|