mirror of
https://github.com/robertstettner/drone-npm-auth.git
synced 2026-06-04 10:15:03 +08:00
11 lines
141 B
Docker
11 lines
141 B
Docker
FROM node:14.18.0-slim
|
|
|
|
# Install packages
|
|
RUN apt-get update && apt-get install -yq \
|
|
git \
|
|
expect-dev
|
|
|
|
ADD bin/ /bin
|
|
|
|
CMD npm-auth
|