Skip to content

Commit

Permalink
Update dsdk and pandas deps (#9)
Browse files Browse the repository at this point in the history
* Update Dockerfile

* Update deps

* Update errors
  • Loading branch information
billfreeman44 authored Mar 31, 2024
1 parent 763516f commit 96616d4
Show file tree
Hide file tree
Showing 4 changed files with 538 additions and 527 deletions.
6 changes: 2 additions & 4 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,12 @@ ARG VARIANT="3"
FROM mcr.microsoft.com/vscode/devcontainers/python:${VARIANT}

ARG POETRY_VERSION="1.2.1"
ARG POETRY_SRC="https://raw.githubusercontent.com/python-poetry/poetry/master/install-poetry.py"
ARG POETRY_SRC="https://install.python-poetry.org"

USER vscode
WORKDIR /home/vscode

RUN curl -fsSL -o install-poetry.py "${POETRY_SRC}" \
&& python install-poetry.py --version $POETRY_VERSION \
&& rm install-poetry.py
RUN curl -sSL "${POETRY_SRC}" | python3 - --version ${POETRY_VERSION}

RUN mkdir -p .config/git \
&& echo ".vscode/*" >> .config/git/ignore \
Expand Down
Loading

0 comments on commit 96616d4

Please sign in to comment.