mirror of
https://github.com/zrepl/zrepl.git
synced 2025-01-05 13:59:06 +01:00
12 lines
181 B
Docker
12 lines
181 B
Docker
|
FROM debian:latest
|
||
|
|
||
|
RUN apt-get update && apt-get install -y \
|
||
|
build-essential \
|
||
|
devscripts \
|
||
|
dh-exec
|
||
|
|
||
|
RUN mkdir -p /build/src && chmod -R 0777 /build
|
||
|
|
||
|
WORKDIR /build/src
|
||
|
|