mirror of
https://github.com/zhigang1992/connect.git
synced 2026-01-13 09:00:27 +08:00
16 lines
328 B
Docker
16 lines
328 B
Docker
FROM nikolaik/python-nodejs:python3.9-nodejs14 as build
|
|
LABEL maintainer="ux@blockstack.com"
|
|
|
|
COPY . .
|
|
|
|
# Build browser extensions
|
|
RUN apt-get update && \
|
|
apt-get install -y zip make && \
|
|
./build-ext.sh
|
|
|
|
FROM alpine:latest
|
|
COPY --from=build extension.zip .
|
|
|
|
# Wait for extension.zip to be copied into local
|
|
CMD sleep 60
|