mirror of
https://github.com/pragma-/pbot.git
synced 2025-07-06 13:37:28 +02:00
14 lines
329 B
Docker
14 lines
329 B
Docker
FROM debian:bookworm
|
|
|
|
# Install system dependencies.
|
|
RUN apt-get update && apt-get install -y clang gcc clang g++ tcl ghc
|
|
|
|
# Prefer a non-root user to run the guest.
|
|
RUN useradd -ms /bin/bash dummy
|
|
USER dummy
|
|
|
|
# Just in case files are created in the working directory.
|
|
WORKDIR /home/dummy
|
|
|
|
# Executable.
|
|
ENTRYPOINT /usr/bin/bash |