mirror of
https://github.com/logos-storage/logos-storage-nim-cs-dist-tests.git
synced 2026-01-02 13:33:07 +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"]
|