mirror of
https://github.com/kasmtech/KasmVNC.git
synced 2024-11-21 23:53:24 +01:00
8 lines
113 B
Plaintext
8 lines
113 B
Plaintext
|
FROM alpine:3.20
|
||
|
|
||
|
RUN apk add shadow bash
|
||
|
|
||
|
RUN useradd -m docker && echo "docker:docker" | chpasswd
|
||
|
|
||
|
USER docker
|