File size: 619 Bytes
8f9c4ef
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# ─────────────────────────────────────────────────────────────
# Sandbox Dockerfile β€” C++ execution
# ─────────────────────────────────────────────────────────────

FROM gcc:13-bookworm

# Create sandbox user
RUN useradd -m -u 1000 sandbox

# Create workspace
RUN mkdir -p /sandbox && chown sandbox:sandbox /sandbox

USER sandbox
WORKDIR /sandbox

ENTRYPOINT ["sh", "-c"]