0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-04-05 03:21:26 -05:00

🎉 Update devenv: ubuntu:xenial->bionic, java: jdk8->jdk12 (zulu-openjdk).

This commit is contained in:
Andrey Antukh 2019-09-17 16:14:49 +00:00
parent 08860e0f25
commit 4db8de8d9d
3 changed files with 23 additions and 19 deletions

View file

@ -1,8 +1,7 @@
FROM openjdk:8-jre
FROM azul/zulu-openjdk:12
LABEL maintainer="Andrey Antukh <niwi@niwi.nz>"
LABEL maintainer="Monogramm Maintainers <opensource at monogramm dot io>"
ENV CLOJURE_VERSION=1.10.0.442 \
ENV CLOJURE_VERSION=1.10.1.469 \
LANG=en_US.UTF-8 \
LC_ALL=C.UTF-8
@ -10,6 +9,7 @@ RUN set -ex; \
apt-get update -yq && \
apt-get install -yq \
curl \
wget \
rsync \
git \
imagemagick \

View file

@ -1,10 +1,10 @@
FROM ubuntu:xenial
FROM ubuntu:bionic
LABEL maintainer="Andrey Antukh <niwi@niwi.nz>"
ARG EXTERNAL_UID=1000
ENV NODE_VERSION=v10.16.0 \
CLOJURE_VERSION=1.10.0.442 \
ENV NODE_VERSION=v10.16.3 \
CLOJURE_VERSION=1.10.1.469 \
LANG=en_US.UTF-8 \
LC_ALL=C.UTF-8
@ -12,6 +12,7 @@ RUN set -ex; \
apt-get update && \
apt-get install -yq \
locales \
gnupg2 \
ca-certificates \
wget \
sudo \
@ -21,7 +22,6 @@ RUN set -ex; \
zsh \
bash \
git \
openjdk-8-jdk \
rlwrap \
build-essential \
imagemagick \
@ -30,19 +30,24 @@ RUN set -ex; \
rm -rf /var/lib/apt/lists/*;
RUN set -ex; \
echo "deb http://apt.postgresql.org/pub/repos/apt/ xenial-pgdg main" >> /etc/apt/sources.list; \
wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add -; \
apt-get update -yq && \
apt-get install -yq \
mkdir -p /etc/resolvconf/resolv.conf.d; \
echo "nameserver 8.8.8.8" > /etc/resolvconf/resolv.conf.d/tail; \
apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 0xB1998361219BD9C9; \
curl https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add -; \
echo "deb http://repos.azulsystems.com/ubuntu stable main" >> /etc/apt/sources.list.d/zulu.list; \
echo "deb http://apt.postgresql.org/pub/repos/apt/ bionic-pgdg main" >> /etc/apt/sources.list.d/postgresql.list;
ARG DEBIAN_FRONTEND=noninteractive
RUN set -ex; \
apt-get -qq update; \
apt-get install -qqy zulu-12; \
apt-get install -qqy \
postgresql-11 \
postgresql-contrib-11 \
;\
rm -rf /var/lib/apt/lists/*;
RUN set -ex; \
mkdir -p /etc/resolvconf/resolv.conf.d; \
echo "nameserver 8.8.8.8" > /etc/resolvconf/resolv.conf.d/tail;
COPY files/pg_hba.conf /etc/postgresql/11/main/pg_hba.conf
COPY files/bashrc /root/.bashrc
COPY files/vimrc /root/.vimrc

View file

@ -1,6 +1,5 @@
FROM nginx:1.17.2
LABEL maintainer="Monogramm Maintainers <opensource at monogramm dot io>"
FROM nginx:1.17.3
LABEL maintainer="Andrey Antukh <niwi@niwi.nz>"
ENV LANG=en_US.UTF-8 \
LC_ALL=C.UTF-8