k-space/samba
k-space
/
samba
Archived
9
0
Fork 0
This repository has been archived on 2023-08-14. You can view files and clone it, but cannot push or open issues or pull requests.
samba/Dockerfile

13 lines
205 B
Docker

FROM alpine AS build
RUN apk add --no-cache \
bind-tools \
krb5 \
samba-dc
RUN rm /etc/samba/smb.conf
COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
ENTRYPOINT /entrypoint.sh