# Copyright 2019 Collabora Ltd.
# SPDX-License-Identifier: MIT

FROM scratch
ADD com.valvesoftware.SteamRuntime.Sdk-amd64,i386-sniper-sysroot.tar.gz /
RUN \
set -e; \
if [ "true" = true ]; then \
    mkdir -p /etc/sudoers.d; \
    echo "%sudo ALL=(ALL:ALL) NOPASSWD: ALL" > /etc/sudoers.d/flatdeb; \
    chmod 0440 /etc/sudoers.d/flatdeb; \
fi; \
:

LABEL com.github.containers.toolbox="true"
LABEL com.github.debarshiray.toolbox="true"

CMD ["/bin/bash"]

# vim:set sw=4 sts=4 et: