-
Notifications
You must be signed in to change notification settings - Fork 135
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add simplistic Dockerfile #149
base: master
Are you sure you want to change the base?
Conversation
After i builded the Container everything run as expected. Except the |
@localleon The gs-server runs with the same image but in another container, so: To start the gs-server:
And each grab-site job runs in its own Docker container:
|
@Fusl Now I understand, works great. This pull request should make some changes to the readme to explain how to use the dockerfile. |
For me, this bombs out when I try to do a
|
Dockerfile
Outdated
@@ -1,5 +1,5 @@ | |||
FROM python:3-alpine |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It looks like we do need to force Python version 3.7.9 here. So, try this instead:
FROM python:3.7.9-alpine
No description provided.