Skip to content

Commit

Permalink
Use fedora 30 for container images
Browse files Browse the repository at this point in the history
Fedora 30 ships golang 1.12 which has an important fix for handling
non-VCS based go modules:

    golang/go#26241

Projects like Kubernetes specify "sub-modules" such as k8s.io/api, which
point to a path within the repo. In previous version, golang tries to
fetch those from the Internet causing unnecessary delays.

Signed-off-by: Luiz Carvalho <[email protected]>
  • Loading branch information
lcarva committed Jul 18, 2019
1 parent e1fa1a8 commit d5ae9a2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docker/Dockerfile-api
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM fedora:29
FROM fedora:30
LABEL maintainer="Factory 2.0"

WORKDIR /src
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile-workers
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM fedora:29
FROM fedora:30
LABEL maintainer="Factory 2.0"

WORKDIR /src
Expand Down

0 comments on commit d5ae9a2

Please sign in to comment.