Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
cloogle.org
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Cloogle
cloogle.org
Compare Revisions
be59d590c71cecd3f7f753e2ffcab5e1e2ae7dbe...5bc9ec3455aacfe781cd0da6be0e09c8a9056c33
Source
5bc9ec3455aacfe781cd0da6be0e09c8a9056c33
Select Git revision
...
Target
be59d590c71cecd3f7f753e2ffcab5e1e2ae7dbe
Select Git revision
Compare
Commits (2)
Use buster-slim instead of stretch-slim for backend now that clean:nightly uses this
· 3e791656
Camil Staps
authored
May 20, 2020
3e791656
Update images in .gitlab-ci.yml
· 5bc9ec34
Camil Staps
authored
May 20, 2020
5bc9ec34
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
.gitlab-ci.yml
.gitlab-ci.yml
+2
-2
backend/Dockerfile
backend/Dockerfile
+1
-1
No files found.
.gitlab-ci.yml
View file @
5bc9ec34
...
@@ -27,14 +27,14 @@ backend:
...
@@ -27,14 +27,14 @@ backend:
frontend
:
frontend
:
stage
:
build
stage
:
build
image
:
php:apache
image
:
php:
7.2-
apache
script
:
script
:
-
cd frontend
-
cd frontend
-
./build.sh
-
./build.sh
stats
:
stats
:
stage
:
build
stage
:
build
image
:
debian:
stretch
image
:
debian:
buster-slim
script
:
script
:
-
cd stats
-
cd stats
-
./build.sh
-
./build.sh
backend/Dockerfile
View file @
5bc9ec34
...
@@ -6,7 +6,7 @@ COPY util/fetch_libs.sh /usr/src/util/fetch_libs.sh
...
@@ -6,7 +6,7 @@ COPY util/fetch_libs.sh /usr/src/util/fetch_libs.sh
WORKDIR
/usr/src/cloogle
WORKDIR
/usr/src/cloogle
RUN
./build.sh
RUN
./build.sh
FROM
debian:
stretch
-slim AS runner
FROM
debian:
buster
-slim AS runner
WORKDIR
/usr/src/cloogle
WORKDIR
/usr/src/cloogle
RUN
apt-get update
-qq
&&
\
RUN
apt-get update
-qq
&&
\
...
...