mirror of
https://github.com/minio/minio.git
synced 2025-11-12 14:51:36 -05:00
Add Docker development workflow for browser (#9664)
This commit is contained in:
13
Dockerfile.dev.browser
Normal file
13
Dockerfile.dev.browser
Normal file
@@ -0,0 +1,13 @@
|
||||
FROM ubuntu
|
||||
|
||||
LABEL maintainer="MinIO Inc <dev@min.io>"
|
||||
|
||||
RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends --no-install-suggests \
|
||||
git golang make npm && \
|
||||
apt-get clean && rm -rf /var/lib/apt/lists/*
|
||||
|
||||
ENV PATH=$PATH:/root/go/bin
|
||||
|
||||
RUN go get github.com/go-bindata/go-bindata/go-bindata && \
|
||||
go get github.com/elazarl/go-bindata-assetfs/go-bindata-assetfs
|
||||
|
||||
Reference in New Issue
Block a user