generated from Templates/Baseline
OCram85
dfa943335c
#### 📖 Summary migrate repo content #### 📑 Test Plan > 💡 Select your test plan for the code changes. - [x] CI pipeline tests - [ ] Custom test - [ ] No test plan ##### Details / Justification <!-- Add your test details or justification for missing tests here. --> #### 📚 Additional Notes <!-- A place for additional detail notes. --> Reviewed-on: #1
17 lines
409 B
Docker
17 lines
409 B
Docker
FROM curlimages/curl:8.7.1
|
|
LABEL org.opencontainers.image.authors="marco@ocram85.com"
|
|
#ENV PLUGIN_OWNER
|
|
#ENV PLUGIN_PACKAGE_NAME
|
|
#ENV PLUGIN_PACKAGE_VERSION
|
|
#ENV PLUGIN_FILE_NAME
|
|
|
|
#ENV PLUGIN_UPDATE
|
|
#ENV PLUGIN_DEBUG="1"
|
|
USER root
|
|
COPY --chown=100:101 --chmod=755 ./gitea-package.sh /app/gitea-package.sh
|
|
#RUN [ "chmod", "+x", "/app/gitea-package.sh" ]
|
|
|
|
USER curl_user
|
|
|
|
ENTRYPOINT [ "/app/gitea-package.sh" ]
|