Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Martin Koehler
rdmo-docker-compose
Commits
94c50466
Commit
94c50466
authored
Oct 15, 2019
by
Olaf Michaelis
Browse files
Fix apt install call
parent
49267508
Changes
2
Hide whitespace changes
Inline
Side-by-side
postgres/dockerfile
View file @
94c50466
...
...
@@ -2,7 +2,7 @@ FROM postgres:latest
ENV
PATH="${PATH}:/opt"
RUN
apt update
-y
&&
apt
install
\
RUN
apt update
-y
&&
apt
upgrade
-y
&&
apt
install
-y
\
postgresql-client
# not necessary, but for sake of clarity
...
...
rdmo/dockerfile_master
View file @
94c50466
...
...
@@ -4,7 +4,7 @@ ARG UID=<UID>
ENV PATH=/opt:${PATH}
RUN apt update -y && apt install -y \
RUN apt update -y && apt
upgrade -y && apt
install -y \
python3 \
python3-dev \
python3-pip \
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment