mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2026-05-14 05:41:29 +00:00
archive.ubuntu.com from GitHub-hosted runners has been Ign:/retrying for ~60s per package, eating the Start SeaweedFS step's 10-min budget before apt-get install finishes. The host already uses azure.archive.ubuntu.com; do the same inside Dockerfile.e2e and drop the Retries=5 amplifier. Also rotate /tmp/.buildx-cache-new over /tmp/.buildx-cache so the apt layer actually survives across runs, and bump the step to 15 minutes as a safety margin.
49 lines
1.6 KiB
Docker
49 lines
1.6 KiB
Docker
FROM ubuntu:22.04
|
|
|
|
LABEL author="Chris Lu"
|
|
|
|
# Use Azure's Ubuntu mirror — much faster than archive.ubuntu.com from GitHub-hosted runners,
|
|
# which have been hanging long enough on Ign:/retry to trip the 10-min step timeout.
|
|
# Note: This e2e test image intentionally runs as root for simplicity and compatibility.
|
|
# Production images (Dockerfile.go_build) use proper user isolation with su-exec.
|
|
# For testing purposes, running as root avoids permission complexities and dependency
|
|
# on Alpine-specific tools like su-exec (not available in Ubuntu repos).
|
|
RUN sed -i 's|http://archive.ubuntu.com/ubuntu|http://azure.archive.ubuntu.com/ubuntu|g; s|http://security.ubuntu.com/ubuntu|http://azure.archive.ubuntu.com/ubuntu|g' /etc/apt/sources.list && \
|
|
apt-get -o Acquire::http::Timeout=15 update && \
|
|
DEBIAN_FRONTEND=noninteractive apt-get -o Acquire::http::Timeout=15 install -y \
|
|
--no-install-recommends \
|
|
--no-install-suggests \
|
|
curl \
|
|
fio \
|
|
fuse \
|
|
ca-certificates \
|
|
&& apt-get clean \
|
|
&& rm -rf /var/lib/apt/lists/* \
|
|
&& rm -rf /tmp/* \
|
|
&& rm -rf /var/tmp/*
|
|
RUN mkdir -p /etc/seaweedfs /data/filerldb2
|
|
|
|
COPY ./weed /usr/bin/
|
|
COPY ./filer.toml /etc/seaweedfs/filer.toml
|
|
COPY ./entrypoint_e2e.sh /entrypoint.sh
|
|
|
|
# volume server grpc port
|
|
EXPOSE 18080
|
|
# volume server http port
|
|
EXPOSE 8080
|
|
# filer server grpc port
|
|
EXPOSE 18888
|
|
# filer server http port
|
|
EXPOSE 8888
|
|
# master server shared grpc port
|
|
EXPOSE 19333
|
|
# master server shared http port
|
|
EXPOSE 9333
|
|
|
|
VOLUME /data
|
|
WORKDIR /data
|
|
|
|
RUN chmod +x /entrypoint.sh
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|