mirror of
https://github.com/codex-storage/cs-codex-dist-tests.git
synced 2025-02-08 18:24:01 +00:00
13 lines
343 B
Docker
13 lines
343 B
Docker
FROM mcr.microsoft.com/dotnet/sdk:8.0
|
|
|
|
RUN apt-get update && apt-get install -y screen
|
|
WORKDIR /app
|
|
COPY --chmod=0755 docker/docker-dnr-entrypoint.sh /
|
|
COPY ./Tools ./Tools
|
|
COPY ./Tests ./Tests
|
|
COPY ./Framework ./Framework
|
|
COPY ./ProjectPlugins ./ProjectPlugins
|
|
|
|
ENTRYPOINT ["/docker-dnr-entrypoint.sh"]
|
|
CMD ["/bin/bash", "deploy-and-run.sh"]
|