File: Dockerfile

package info (click to toggle)
libnitrokey 3.8-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 900 kB
  • sloc: cpp: 6,246; python: 2,095; ansic: 255; makefile: 59; sh: 57
file content (13 lines) | stat: -rw-r--r-- 435 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
FROM ubuntu:22.04
MAINTAINER Nitrokey <info@nitrokey.com>

ENV DEBIAN_FRONTEND=noninteractive
RUN apt update && apt install -qy --no-install-recommends \
    libhidapi-dev libusb-1.0-0-dev cmake gcc g++ make doxygen pkg-config alien git graphviz \
    build-essential:native pkg-kde-tools udev gnupg curl devscripts \
    debian-keyring ubuntu-keyring \
    && rm -rf /var/lib/apt/lists/*

RUN mkdir -p /app /root/.gnupg

WORKDIR /app