File: Dockerfile-linux32

package info (click to toggle)
rust-curl 0.4.44-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 704 kB
  • sloc: sh: 16; makefile: 2
file content (14 lines) | stat: -rw-r--r-- 320 bytes parent folder | download | duplicates (26)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
FROM ubuntu:16.04

RUN dpkg --add-architecture i386 && \
    apt-get update && \
    apt-get install -y --no-install-recommends \
      gcc-multilib \
      ca-certificates \
      make \
      libc6-dev \
      libssl-dev:i386 \
      pkg-config

ENV PKG_CONFIG=i686-linux-gnu-pkg-config \
    PKG_CONFIG_ALLOW_CROSS=1