File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -50,13 +50,13 @@ RUN export DEBIAN_FRONTEND=noninteractive \
50
50
tini \
51
51
&& curl -sL https://nginx.org/keys/nginx_signing.key \
52
52
> /etc/apt/trusted.gpg.d/nginx.asc && \
53
- echo "deb https://packages.nginx.org/unit/debian/ bullseye unit" \
53
+ echo "deb https://packages.nginx.org/unit/ubuntu/ jammy unit" \
54
54
> /etc/apt/sources.list.d/unit.list \
55
55
&& apt-get update -qq \
56
56
&& apt-get install \
57
57
--yes -qq --no-install-recommends \
58
- unit=1.27.0-1~bullseye \
59
- unit-python3.9 =1.27.0-1~bullseye \
58
+ unit=1.27.0-1~jammy \
59
+ unit-python3.10 =1.27.0-1~jammy \
60
60
&& rm -rf /var/lib/apt/lists/*
61
61
62
62
COPY --from=builder /opt/netbox/venv /opt/netbox/venv
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ if [ "${1}x" == "x" ] || [ "${1}" == "--help" ] || [ "${1}" == "-h" ]; then
43
43
echo " DOCKERFILE The name of Dockerfile to use."
44
44
echo " Default: Dockerfile"
45
45
echo " DOCKER_FROM The base image to use."
46
- echo " Default: 'debian:11-slim '"
46
+ echo " Default: 'ubuntu:22.04 '"
47
47
echo " BUILDX_PLATFORMS"
48
48
echo " Specifies the platform(s) to build the image for."
49
49
echo " Example: 'linux/amd64,linux/arm64'"
182
182
# Determining the value for DOCKER_FROM
183
183
# ##
184
184
if [ -z " $DOCKER_FROM " ]; then
185
- DOCKER_FROM=" debian:11-slim "
185
+ DOCKER_FROM=" ubuntu:22.04 "
186
186
fi
187
187
188
188
# ##
You can’t perform that action at this time.
0 commit comments