Skip to content

Commit

Permalink
Updated pipfile.lock and dockerfile to fix rust dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
ssuffian committed Feb 4, 2023
1 parent fa64980 commit d62ba6b
Show file tree
Hide file tree
Showing 3 changed files with 515 additions and 355 deletions.
4 changes: 4 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ RUN set -ex && pip install pip pipenv --upgrade
RUN apt-get update \
&& apt-get install -yqq libenchant-2-dev

# Get Rust
RUN curl https://sh.rustup.rs -sSf | bash -s -- -y
ENV PATH="/root/.cargo/bin:${PATH}"

COPY Pipfile Pipfile
COPY Pipfile.lock Pipfile.lock
RUN set -ex && pipenv install --system --deploy --dev
Expand Down
8 changes: 4 additions & 4 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,18 @@ name = "pypi"

[packages]

click = "==7.0"
eeweather = ">=0.3.12"
click = "*"
matplotlib = "*"
statsmodels = "*"
scipy = "*"
sqlalchemy = "*"
pandas = "*"


[dev-packages]

black = "==18.6b4"
sqlalchemy = "*"
eeweather = ">=0.3.12"
black = "*"
coverage = "*"
jupyterlab = "*"
nbsphinx = "*"
Expand Down
Loading

0 comments on commit d62ba6b

Please sign in to comment.