Skip to content

Commit c587158

Browse files
committed
debian7/Dockerfile: add
1 parent b619efc commit c587158

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

debian7/Dockerfile

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
FROM debian/eol:wheezy
2+
ARG DEBIAN_FRONTEND=noninteractive
3+
4+
RUN apt-get update \
5+
&& apt-get install -y build-essential bzip2 libz-dev texinfo wget
6+
7+
RUN useradd --create-home --shell /bin/bash linuxbrew
8+
9+
ENV CFLAGS="-march=core2 -O2"
10+
ENV CXXFLAGS="-march=core2 -O2"
11+
ENV PREFIX=/tmp/homebrew
12+
RUN su - linuxbrew --command 'mkdir --parents /tmp/homebrew'
13+
ENV PKGDIR=/home/linuxbrew/bootstrap-binaries
14+
RUN su - linuxbrew --command 'mkdir --parents /home/linuxbrew/bootstrap-binaries'

0 commit comments

Comments
 (0)