blob: 07bce1b676c62d8a5b60b1d55511822ac97f0174 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Docker image for running BuildStream
# ====================================
#
# This image has BuildStream and its dependencies installed in /usr.
# See Dockerfile-build.sh for the full build instructions.
#
# To build it, run this command from the current directory:
#
# docker build --tag=buildstream:latest .
#
# The build takes a long time because it has to download lots of packages using
# DNF.
FROM fedora:26
ADD Dockerfile-build.sh /root/Dockerfile-build.sh
RUN bash /root/Dockerfile-build.sh
# Work around https://github.com/fedora-cloud/docker-brew-fedora/issues/14
ENV LANG C.UTF-8
ENV LC_ALL C.UTF-8
|