File: Dockerfile.bionic-i386

package info (click to toggle)
libappimage 1.0.4-5-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,360 kB
  • sloc: cpp: 4,678; ansic: 1,325; sh: 170; python: 27; makefile: 19
file content (11 lines) | stat: -rw-r--r-- 328 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
FROM i386/ubuntu:bionic

ENV ARCH=i386 DIST=bionic CI=1

COPY ./install-deps.sh /
RUN bash -xe install-deps.sh

# create unprivileged user for non-build-script use of this image
# build-in-docker.sh will likely not use this one, as it enforces the caller's uid inside the container
RUN adduser --system --group build
USER build