10 lines
152 B
Docker
10 lines
152 B
Docker
FROM alpine:latest
|
|
|
|
RUN apk add --no-cache samba-server samba-common-tools
|
|
|
|
ADD start.sh /start.sh
|
|
|
|
RUN ["chmod", "+x", "/start.sh"]
|
|
|
|
CMD ["/start.sh"]
|