Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Container
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
HedgeDoc
Container
Commits
1b95a26e
Unverified
Commit
1b95a26e
authored
5 years ago
by
Sandro Jäckel
Browse files
Options
Downloads
Patches
Plain Diff
Use array copy everywhere
parent
99446fb5
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
alpine/Dockerfile
+1
-1
1 addition, 1 deletion
alpine/Dockerfile
debian/Dockerfile
+2
-2
2 additions, 2 deletions
debian/Dockerfile
with
3 additions
and
3 deletions
alpine/Dockerfile
+
1
−
1
View file @
1b95a26e
...
@@ -50,7 +50,7 @@ RUN set -ex; \
...
@@ -50,7 +50,7 @@ RUN set -ex; \
apk del .gosu-deps
apk del .gosu-deps
# Add configuraton files
# Add configuraton files
COPY
resources/config.json
resources/.sequelizerc
/files/
COPY
["
resources/config.json
", "
resources/.sequelizerc
", "
/files/
"]
# Install all dependencies and build project
# Install all dependencies and build project
RUN
apk add
--no-cache
--virtual
.dep
\
RUN
apk add
--no-cache
--virtual
.dep
\
...
...
This diff is collapsed.
Click to expand it.
debian/Dockerfile
+
2
−
2
View file @
1b95a26e
...
@@ -15,7 +15,7 @@ RUN wget https://github.com/jwilder/dockerize/releases/download/$DOCKERIZE_VERSI
...
@@ -15,7 +15,7 @@ RUN wget https://github.com/jwilder/dockerize/releases/download/$DOCKERIZE_VERSI
rm
dockerize-linux-amd64-
$DOCKERIZE_VERSION
.tar.gz
rm
dockerize-linux-amd64-
$DOCKERIZE_VERSION
.tar.gz
ENV
GOSU_VERSION 1.11
ENV
GOSU_VERSION 1.11
COPY
resources/gosu-gpg.key
/tmp/gosu.key
COPY
["
resources/gosu-gpg.key
", "
/tmp/gosu.key
"]
RUN
set
-ex
;
\
RUN
set
-ex
;
\
dpkgArch
=
"
$(
dpkg
--print-architecture
|
awk
-F-
'{ print $NF }'
)
"
;
\
dpkgArch
=
"
$(
dpkg
--print-architecture
|
awk
-F-
'{ print $NF }'
)
"
;
\
wget
-O
/usr/local/bin/gosu
"https://github.com/tianon/gosu/releases/download/
$GOSU_VERSION
/gosu-
$dpkgArch
"
;
\
wget
-O
/usr/local/bin/gosu
"https://github.com/tianon/gosu/releases/download/
$GOSU_VERSION
/gosu-
$dpkgArch
"
;
\
...
@@ -32,7 +32,7 @@ RUN set -ex; \
...
@@ -32,7 +32,7 @@ RUN set -ex; \
gosu nobody true
gosu nobody true
# Add configuraton files
# Add configuraton files
COPY
resources/config.json
resources/.sequelizerc
/files/
COPY
["
resources/config.json
", "
resources/.sequelizerc
", "
/files/
"]
RUN
apt-get update
&&
\
RUN
apt-get update
&&
\
apt-get
install
--no-install-recommends
-y
\
apt-get
install
--no-install-recommends
-y
\
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment