All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 3s
12 lines
183 B
Docker
12 lines
183 B
Docker
FROM syui/aios
|
|
|
|
WORKDIR /root
|
|
|
|
COPY ./test/entrypoint.sh /root/entrypoint.sh
|
|
RUN chmod +x /root/entrypoint.sh
|
|
|
|
ENV ADMIN=""
|
|
ENV HOST="bsky.social"
|
|
|
|
ENTRYPOINT ["/root/entrypoint.sh"]
|