forked from apache/superset
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Updating Dockerfile to work with updated python requirements. (a…
…pache#10550) * Updating Dockerfile to work with updated python requirements. * Adding a Docker build step to CI workflow * Trying docker build-push * Linting Dockerfile-dev * Switching to dev dockerfile
- Loading branch information
1 parent
4ad7615
commit 7ff96e9
Showing
5 changed files
with
57 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: DOCKER | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
build: | ||
name: build | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
|
||
- name: Run local registry | ||
run: docker run -d -p 5000:5000 registry:2 | ||
|
||
- name: Build and push Docker images | ||
uses: docker/build-push-action@v1 | ||
with: | ||
dockerfile: Dockerfile-dev | ||
registry: localhost:5000 | ||
repository: temp/workflow | ||
tags: foo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# SHA1:54074dcfe0a3bf83a9f4f8e2fb9d24746a86b50c | ||
# | ||
# This file is autogenerated by pip-compile-multi | ||
# To update, run: | ||
# | ||
# pip-compile-multi | ||
# | ||
-r base.txt | ||
-e file:. # via -r base.in | ||
gevent==20.6.2 # via -r docker.in | ||
greenlet==0.4.16 # via gevent | ||
redis==3.5.3 # via -r docker.in | ||
zope.event==4.4 # via gevent | ||
zope.interface==5.1.0 # via gevent | ||
|
||
# The following packages are considered to be unsafe in a requirements file: | ||
# setuptools |