Sign inSign up

elice/azurite

By elice

Updated over 5 years ago

Minimized build for https://github.com/Azure/Azurite

Image
0

6.5K

elice/azurite repository overview

FROM node:10-alpine

RUN apk add --no-cache --virtual .build-deps git \
    && git clone https://github.com/Azure/Azurite \
    && cd Azurite \
    && git checkout v3.4.0 \
    && npm install \
    && npm run build \
    && npm install -g \
    && npm prune --production \
    && apk del .build-deps

VOLUME /azurite-data

# Blob Storage Emulator
EXPOSE 10000
# Azure Queue Storage Emulator
EXPOSE 10001
# # Azure Table Storage Emulator
# EXPOSE 10002

CMD ["azurite", "-l", "/azurite-data", "--blobHost", "0.0.0.0", "--queueHost", "0.0.0.0", "--loose"]

Tag summary

Content type

Image

Digest

Size

78.5 MB

Last updated

over 5 years ago

docker pull elice/azurite:v3.11.0