Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Azurestorage #27

Merged
merged 2 commits into from
Mar 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions app/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,12 @@ RUN apt-get update \
build-essential libssl-dev libffi-dev libjpeg-dev \
libpq-dev liblcms2-dev libblas-dev libatlas-base-dev pkg-config curl unzip \
&& rm -rf /var/lib/apt/lists/*

RUN curl -sSL -O https://packages.microsoft.com/config/debian/12/packages-microsoft-prod.deb
RUN dpkg -i packages-microsoft-prod.deb
RUN apt-get update \
&& apt-get upgrade -y \
&& apt-get install -y fuse3 blobfuse2 \
# -------

# install dependencies
Expand Down
7 changes: 7 additions & 0 deletions app/Dockerfile.prod
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,15 @@ RUN apt-get update \
libxml2-dev libxslt1-dev zlib1g-dev libsasl2-dev libldap2-dev \
build-essential libssl-dev libffi-dev libjpeg-dev \
libpq-dev liblcms2-dev libblas-dev libatlas-base-dev pkg-config curl unzip \
fuse3 blobfuse2 \
&& rm -rf /var/lib/apt/lists/*

RUN curl -sSL -O https://packages.microsoft.com/config/debian/12/packages-microsoft-prod.deb
RUN dpkg -i packages-microsoft-prod.deb
RUN apt-get update \
&& apt-get upgrade -y \
&& apt-get install -y fuse3 blobfuse2 \

# lint
RUN pip install --upgrade pip
COPY . /usr/src/app/
Expand Down
Loading