Skip to content

Commit

Permalink
Attempt to fix codespace problem
Browse files Browse the repository at this point in the history
  • Loading branch information
Eve-ning committed Dec 26, 2023
1 parent 3eb0b40 commit d021af7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ WORKDIR /devcontainer

COPY ./pyproject.toml /devcontainer/pyproject.toml

RUN apt-get update
RUN apt-get install git -y
RUN apt update && apt upgrade
RUN apt install git -y

RUN pip3 install --upgrade pip && \
pip3 install poetry && \
Expand All @@ -16,5 +16,5 @@ RUN conda init bash \
&& poetry config virtualenvs.create false \
&& poetry install --with dev --no-interaction --no-ansi

RUN apt-get install curl -y && curl -sSL https://sdk.cloud.google.com | bash
RUN apt install curl -y && curl -sSL https://sdk.cloud.google.com | bash
ENV PATH $PATH:/root/google-cloud-sdk/bin

0 comments on commit d021af7

Please sign in to comment.