This commit is contained in:
2024-02-20 17:15:27 +08:00
committed by huty
parent 6706e1a633
commit 34158042ad
1529 changed files with 177765 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
FROM node:12
ENV SERVERLESS_VERSION="1.77.1" \
KUBERNETES_VERSION="1.18.5"
RUN npm install -g serverless@${SERVERLESS_VERSION}
RUN curl -LO https://storage.googleapis.com/kubernetes-release/release/v${KUBERNETES_VERSION}/bin/linux/amd64/kubectl && \
chmod +x kubectl && \
mv kubectl /usr/local/bin/
COPY start.sh /
RUN chmod +x /start.sh
CMD /start.sh
WORKDIR /kiamol