mirror of
https://github.com/SrIzan10/starters.git
synced 2026-05-01 11:05:16 +00:00
14 lines
239 B
Docker
14 lines
239 B
Docker
FROM alpine:latest
|
|
|
|
RUN apk update \
|
|
&& apk add curl openrc \
|
|
&& rm -rf /var/cache/apk/*
|
|
|
|
RUN curl -fsSL https://tailscale.com/install.sh | sh
|
|
|
|
COPY . .
|
|
|
|
# Run on container startup.
|
|
RUN chmod +x /app/start.sh
|
|
CMD ["/app/start.sh"]
|