mirror of
https://github.com/elastic/logstash.git
synced 2025-06-27 17:08:55 -04:00
introduces two rake tasks: `rake artifact:docker_oss` and `rake artifact:docker`, which will create the docker images of the OSS and non OSS packages. These tasks depend on the tar artifacts being built. Also `rake artifact:all` has been modified to also call these two tasks. most code was moved from https://github.com/elastic/logstash-docker/
8 lines
153 B
Python
8 lines
153 B
Python
import subprocess
|
|
import os
|
|
from .constants import image, version
|
|
|
|
try:
|
|
version += '-%s' % os.environ['STAGING_BUILD_NUM']
|
|
except KeyError:
|
|
pass
|