70ee4e1b3e
* 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
4 lines
103 B
Docker
4 lines
103 B
Docker
# Simple container to store assets for later use
|
|
FROM scratch
|
|
ADD public/assets /assets/
|
|
CMD /bin/true
|