sanic/examples/Dockerfile
2021-03-10 11:19:38 +02:00

9 lines
108 B
Docker

FROM sanicframework/sanic:LTS
RUN mkdir /srv
COPY . /srv
WORKDIR /srv
CMD ["sanic", "simple_server.app"]