Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions images/samba-dc/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,12 @@ COPY entrypoint.sh /usr/local/bin/
RUN echo "@edge https://dl-cdn.alpinelinux.org/alpine/edge/main" \
>> /etc/apk/repositories && \
apk add -u --no-cache krb5 ldb-tools samba-dc@edge=$SAMBA_VERSION \
samba-winbind-clients=$SAMBA_VERSION tdb bind bind-libs bind-tools \
ldb-tools@edge \
samba-winbind-clients@edge=$SAMBA_VERSION tdb bind bind-libs bind-tools \
libcrypto3 libxml2 tzdata py3-cryptography py3-setuptools py3-pip && \
pip install jinjanator --break-system-packages && \
apk del py3-pip && \
# TODO restore when 4.23.10+ appears in alpine main
# apk del py3-pip && \
chmod 0755 /usr/local/bin/entrypoint.sh

VOLUME /etc/samba /var/lib/samba
Expand Down
3 changes: 2 additions & 1 deletion images/samba/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ ENV LOGON_DRIVE=H \

RUN echo "@edge https://dl-cdn.alpinelinux.org/alpine/edge/main" \
>> /etc/apk/repositories && \
apk add -u --no-cache samba@edge=$SAMBA_VERSION shadow tzdata
apk add -u --no-cache samba@edge=$SAMBA_VERSION shadow tzdata \
libcrypto3 libssl3

VOLUME /etc/samba/conf.d /var/log/samba
EXPOSE 137-138/udp 139 445
Expand Down
2 changes: 1 addition & 1 deletion images/weewx/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ RUN apk add -u --no-cache \
python3 -m venv $VENV --system-site-packages && \
source $VENV/bin/activate && \
pip install weewx==$WEEWX_VERSION ct3 && \
pip uninstall -y setuptools && \
pip uninstall -y pip && \
git clone -b $WEEGREEN_VERSION --depth 1 \
https://github.com/instantlinux/weewx-WeeGreen.git \
$WX_ROOT/skins/WeeGreen && \
Expand Down
Loading