2
0

fix(Dockerfile): Fix default IMAGE missing (#223)

This commit is contained in:
Burak Yigit Kaya 2019-07-24 11:28:48 +03:00 committed by GitHub
parent 424cc20e84
commit af07ad9c55
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 4 deletions

View File

@ -1,4 +1,3 @@
IMAGE=sentry:9.1
# Run `docker-compose run web config generate-secret-key`
# to get the SENTRY_SECRET_KEY value.
SENTRY_SECRET_KEY=

View File

@ -2,7 +2,7 @@ language: bash
services: docker
env:
- IMAGE=sentry:9.1
- IMAGE=sentry:9.1.2
- IMAGE=getsentry/sentry:git
script:

View File

@ -1,2 +1,2 @@
ARG IMAGE
ARG IMAGE=sentry:9.1.2
FROM ${IMAGE}-onbuild