You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+13Lines changed: 13 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,6 +20,19 @@ $ sls deploy
20
20
$ sls invoke --function demo # Yay! You will get texts of example.com
21
21
```
22
22
23
+
## Public image is available
24
+
25
+
If you want your image simplier and updated automatically, rewrite the Dockerfile with the following commands:
26
+
27
+
```Dockerfile
28
+
FROM umihico/aws-lambda-selenium-python:latest
29
+
30
+
COPY main.py ./
31
+
CMD [ "main.handler" ]
32
+
```
33
+
34
+
Available tags are listed [here](https://hub.docker.com/r/umihico/aws-lambda-selenium-python/tags)
35
+
23
36
## Side Project
24
37
25
38
If you don't want to create functions each time for each purpose, Please check out [pythonista-chromeless](https://github.com/umihico/pythonista-chromeless)
0 commit comments