KasmVNC/builder/dockerfile.debian_buster.deb.build

13 lines
299 B
Plaintext
Raw Normal View History

2021-01-22 09:54:22 +01:00
FROM debian:buster
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update && \
apt-get -y install vim build-essential devscripts equivs
# Install build-deps for the package.
COPY ./debian/control /tmp
2021-02-24 09:16:53 +01:00
RUN apt-get update && echo YYY | mk-build-deps --install --remove /tmp/control
2021-01-22 09:54:22 +01:00
USER 1000