mirror of
https://github.com/penpot/penpot.git
synced 2025-08-07 14:38:33 +02:00
misc: minor reorganization on devenv dockerfile
This commit is contained in:
parent
cff438eccc
commit
a43fc529e7
1 changed files with 16 additions and 16 deletions
|
@ -13,10 +13,11 @@ RUN set -ex; \
|
||||||
locales \
|
locales \
|
||||||
ca-certificates \
|
ca-certificates \
|
||||||
wget \
|
wget \
|
||||||
; \
|
sudo \
|
||||||
rm -rf /var/lib/apt/lists/*; \
|
tmux \
|
||||||
apt-get update -yq && \
|
vim \
|
||||||
apt-get install -yq \
|
curl \
|
||||||
|
zsh \
|
||||||
bash \
|
bash \
|
||||||
git \
|
git \
|
||||||
openjdk-8-jdk \
|
openjdk-8-jdk \
|
||||||
|
@ -25,22 +26,21 @@ RUN set -ex; \
|
||||||
imagemagick \
|
imagemagick \
|
||||||
webp \
|
webp \
|
||||||
; \
|
; \
|
||||||
mkdir -p /etc/resolvconf/resolv.conf.d; \
|
rm -rf /var/lib/apt/lists/*;
|
||||||
echo "nameserver 8.8.8.8" > /etc/resolvconf/resolv.conf.d/tail;
|
|
||||||
|
|
||||||
RUN set -ex; \
|
RUN set -ex; \
|
||||||
echo "deb http://apt.postgresql.org/pub/repos/apt/ xenial-pgdg main" >> /etc/apt/sources.list; \
|
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 -; \
|
wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add -; \
|
||||||
apt-get update -yq && \
|
apt-get update -yq && \
|
||||||
apt-get install -yq \
|
apt-get install -yq \
|
||||||
postgresql-9.6 \
|
postgresql-9.6 \
|
||||||
postgresql-contrib-9.6 \
|
postgresql-contrib-9.6 \
|
||||||
sudo \
|
;\
|
||||||
tmux \
|
rm -rf /var/lib/apt/lists/*;
|
||||||
vim \
|
|
||||||
curl \
|
RUN set -ex; \
|
||||||
zsh \
|
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/9.6/main/pg_hba.conf
|
COPY files/pg_hba.conf /etc/postgresql/9.6/main/pg_hba.conf
|
||||||
COPY files/bashrc /root/.bashrc
|
COPY files/bashrc /root/.bashrc
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue