mirror of
https://github.com/nicotsx/zerobyte.git
synced 2026-06-18 05:19:17 -04:00
11 lines
257 B
Docker
11 lines
257 B
Docker
FROM alpine:3.21
|
|
|
|
RUN apk add --no-cache samba samba-common-tools samba-client
|
|
|
|
COPY entrypoint.sh /usr/local/bin/zerobyte-smb-entrypoint
|
|
RUN chmod +x /usr/local/bin/zerobyte-smb-entrypoint
|
|
|
|
EXPOSE 445
|
|
|
|
ENTRYPOINT ["/usr/local/bin/zerobyte-smb-entrypoint"]
|