/ Dockerfile
Dockerfile
1 FROM nimlang/nim:1.4.8 2 WORKDIR /app 3 4 COPY graphql.nimble . 5 RUN nimble install --depsOnly -y --verbose 6 COPY . . 7 RUN nim c -d:release playground/swserver 8 9 EXPOSE 8547 10 11 ENTRYPOINT ./playground/swserver starwars --bind:0.0.0.0:8547