mirror of
https://github.com/atom/atom.git
synced 2026-01-26 07:19:06 -05:00
11 lines
217 B
Bash
Executable File
11 lines
217 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -ex
|
|
|
|
rm -f atom-rpm.cid
|
|
docker build -t atom-rpm .
|
|
docker run --cidfile='atom-rpm.cid' atom-rpm /atom/script/dockerbuild
|
|
|
|
CONTAINER_ID=`cat atom-rpm.cid`
|
|
docker cp "$CONTAINER_ID:/tmp/atom-build/rpm" .
|