aboutsummaryrefslogtreecommitdiff
path: root/docker/debian-dev/Dockerfile
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2023-11-21 18:48:08 +0800
committercrupest <crupest@outlook.com>2023-11-21 19:57:56 +0800
commitac7ba2aa63f2a6cbf7bb42fb2c1c71f595570f71 (patch)
tree474b937518bac7e67dbc790edd378f72c8ddb5d6 /docker/debian-dev/Dockerfile
parent0803f356e5bce6a7849908eb94d5565c4756e849 (diff)
downloadcrupest-ac7ba2aa63f2a6cbf7bb42fb2c1c71f595570f71.tar.gz
crupest-ac7ba2aa63f2a6cbf7bb42fb2c1c71f595570f71.tar.bz2
crupest-ac7ba2aa63f2a6cbf7bb42fb2c1c71f595570f71.zip
docker(debian-dev): try to fix sbuild.
Diffstat (limited to 'docker/debian-dev/Dockerfile')
-rw-r--r--docker/debian-dev/Dockerfile10
1 files changed, 3 insertions, 7 deletions
diff --git a/docker/debian-dev/Dockerfile b/docker/debian-dev/Dockerfile
index e43764e..950e1af 100644
--- a/docker/debian-dev/Dockerfile
+++ b/docker/debian-dev/Dockerfile
@@ -1,17 +1,13 @@
FROM debian:11
ARG IN_CHINA=
+ARG BUILD_FOR_ARCH=amd64
ENV IN_CHINA=${IN_CHINA}
+ARG BUILD_FOR_ARCH=${BUILD_FOR_ARCH}
ADD bootstrap /bootstrap
-RUN /bootstrap/apt-source/setup.bash
-RUN /bootstrap/setup-base.bash
-RUN /bootstrap/setup-dev-tools.bash
-RUN /bootstrap/setup-dev-tools-arm64.bash
-RUN /bootstrap/setup-sbuild-base.bash
-RUN /bootstrap/setup-sbuild-amd64.bash
-RUN /bootstrap/setup-sbuild-arm64.bash
+RUN /bootstrap/setup.bash
VOLUME [ "/source", "/data" ]
CMD [ "bash", "-l" ]