File: Dockerfile.ubuntu

package info (click to toggle)
checksec 2.6.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 10,936 kB
  • sloc: sh: 1,882; makefile: 2
file content (11 lines) | stat: -rw-r--r-- 339 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
FROM ubuntu:18.04

# Install dependencies
RUN apt-get update && apt-get -y -q upgrade && DEBIAN_FRONTEND=noninteractive apt-get -y -q install \
  bc bison flex build-essential ccache git \
  libncurses-dev libssl-dev u-boot-tools wget \
  xz-utils vim xfce4 libxml2-utils python-demjson jq \
 && apt-get clean

COPY .  /root
WORKDIR /root