mirror of
https://github.com/status-im/status-go.git
synced 2025-01-17 18:22:13 +00:00
e938635d04
* chore_: get version with go generate * fix_: test-functional * fix_: trip space in version and gitcommit * fix_: TestUserAgent
13 lines
215 B
Docker
13 lines
215 B
Docker
FROM ghcr.io/foundry-rs/foundry:latest
|
|
|
|
RUN apk update && \
|
|
apk add git bash
|
|
|
|
WORKDIR /app
|
|
|
|
COPY entrypoint.sh /app
|
|
RUN chmod +x /app/entrypoint.sh
|
|
|
|
ENTRYPOINT [ "/app/entrypoint.sh" ]
|
|
WORKDIR /app/$GITHUB_REPO
|