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
ARG PYTHON_VERSION | |
FROM lambci/lambda:build-python$PYTHON_VERSION | |
RUN pip install -U pip | |
RUN pip install poetry==1.0.0a2 | |
COPY bin/entrypoint /bin | |
ENV AWS_REGION="eu-west-1" |
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
FROM python:3.7.3-stretch | |
COPY app /app | |
RUN pip install pip==19.0.3 | |
RUN pip install poetry==1.0.0a2 | |
RUN source $HOME/.poetry/env | |
RUN poetry install | |
RUN useradd --create-home appuser |
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
[tool.poetry] | |
name = "dphelper" | |
version = "0.1.6.dev0" | |
description = "" | |
authors = ["Alex Tonkonozhenko <[email protected]>"] | |
[tool.poetry.dependencies] | |
python = "*" | |
psycopg2-binary = "^2.7" | |
glomex-utils = "^0.0" |
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
[tool.poetry] | |
name = "rating-engine" | |
version = "0.1.0" | |
description = "" | |
authors = ["Alex Tonkonozhenko <[email protected]>"] | |
[tool.poetry.dependencies] | |
python = "^3.6" | |
lxml = "^4.2" | |
numpy = "^1.14" |
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
import java.io.IOException; | |
import java.net.URL; | |
import java.util.Date; | |
import java.util.List; | |
import java.util.logging.Level; | |
import org.json.*; | |
import org.openqa.selenium.*; | |
import org.openqa.selenium.chrome.*; | |
import org.openqa.selenium.logging.*; |
NewerOlder