Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Deploy 4.1.8 to Production #1926

Merged
merged 10 commits into from
Mar 27, 2024
7 changes: 1 addition & 6 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ COPY ./docker/localdev_postgres_init.sh /docker-entrypoint-initdb.d/localdev_pos
#
###############################################################################

FROM ubuntu:20.04 as circulation_base
FROM ubuntu:22.04 as circulation_base

ARG DEBIAN_FRONTEND="noninteractive"
ARG NODESOURCE_KEYFILE="https://deb.nodesource.com/gpgkey/nodesource.gpg.key"
Expand All @@ -74,13 +74,9 @@ RUN apt-get update \
curl \
ca-certificates \
gnupg \
# For adding repositories
software-properties-common \
&& curl -sSL ${NODESOURCE_KEYFILE} | apt-key add - \
&& echo "deb https://deb.nodesource.com/node_14.x focal main" >> /etc/apt/sources.list.d/nodesource.list \
&& echo "deb-src https://deb.nodesource.com/node_14.x focal main" >> /etc/apt/sources.list.d/nodesource.list \
# Add repository for python 3.10
&& add-apt-repository ppa:deadsnakes/ppa \
&& apt-get update \
&& apt-get install --yes --no-install-recommends \
build-essential \
Expand All @@ -90,7 +86,6 @@ RUN apt-get update \
git \
# Need 3.10-dev for build of xmlsec
python3.10-dev \
python3-dev \
python3-setuptools \
python3-venv \
python3-pip \
Expand Down
Loading
Loading