12 lines
188 B
Docker
12 lines
188 B
Docker
|
|
FROM alpine:3.22
|
||
|
|
|
||
|
|
RUN apk add --no-cache python3 shadow
|
||
|
|
|
||
|
|
COPY --chmod=0755 entrypoint.py /bin/entrypoint.py
|
||
|
|
|
||
|
|
VOLUME /etc/sysconfig.toml
|
||
|
|
|
||
|
|
ENTRYPOINT ["/bin/entrypoint.py"]
|
||
|
|
|
||
|
|
CMD ["/bin/sh"]
|