mirror of
https://github.com/geoserver/geoserver-cloud.git
synced 2025-12-08 20:16:08 +00:00
16 lines
438 B
Docker
16 lines
438 B
Docker
FROM ubuntu:24.04 AS base
|
|
|
|
RUN apt-get update \
|
|
&& apt-get upgrade --assume-yes \
|
|
&& apt-get install --assume-yes --no-install-recommends \
|
|
vim curl jq libmagic1 zip python3-pip libpq-dev python3-dev gcc \
|
|
&& rm -rf /var/lib/apt/lists/* \
|
|
&& rm /usr/lib/python*/EXTERNALLY-MANAGED
|
|
|
|
COPY . /acceptance_tests
|
|
|
|
WORKDIR /acceptance_tests
|
|
RUN python3 -m pip install --disable-pip-version-check .
|
|
|
|
CMD ["sleep", "infinity"]
|