mirror of
https://github.com/valitydev/redash.git
synced 2024-11-06 09:05:17 +00:00
11 lines
206 B
Docker
11 lines
206 B
Docker
FROM debian:wheezy
|
|
MAINTAINER Di Wu <diwu@yelp.com>
|
|
|
|
COPY . /opt/redash/current/
|
|
|
|
# Install dependencies
|
|
WORKDIR /opt/redash/current
|
|
RUN bash setup/bootstrap_docker.sh
|
|
|
|
CMD service redash_supervisord start
|