mirror of
https://github.com/kasmtech/KasmVNC.git
synced 2024-11-22 08:04:04 +01:00
59382451dc
It builds the builder image first, then proceeeds to building .deb inside it, and the result is put into the parent (../) directory.
11 lines
244 B
Plaintext
11 lines
244 B
Plaintext
FROM ubuntu:18.04
|
|
|
|
RUN apt-get update && \
|
|
apt-get -y install vim build-essential devscripts equivs
|
|
|
|
# Install build-deps for the package.
|
|
COPY ./debian/control /tmp
|
|
RUN echo YYY | mk-build-deps --install --remove /tmp/control
|
|
|
|
USER 1000
|