Skip to content

Instantly share code, notes, and snippets.

@atombrella
Created June 26, 2023 06:22
Show Gist options
  • Save atombrella/88466e33685cd35138163ed520410fb5 to your computer and use it in GitHub Desktop.
Save atombrella/88466e33685cd35138163ed520410fb5 to your computer and use it in GitHub Desktop.
Docker Ubuntu Azure blob sta
FROM ubuntu:23.04
WORKDIR /opt
# adduser && addgroup
RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive apt-get install -y curl && \
curl -Ls https://packages.microsoft.com/config/ubuntu/20.04/packages-microsoft-prod.deb -o /opt/packages-microsoft-prod.deb && \
dpkg -i /opt/packages-microsoft-prod.deb && \
apt-get update -y && \
DEBIAN_FRONTEND=noninteractive apt-get install -y libfuse3-dev fuse3 && \
apt-get autoclean && \
apt-get autoremove && \
apt-get upgrade -y && \
rm -rf rm /var/lib/apt/lists/* /opt/packages-microsoft-prod.deb
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment