sanic/examples/Dockerfile

9 lines
108 B
Docker
Raw Normal View History

2021-03-10 11:19:38 +02:00
FROM sanicframework/sanic:LTS
2016-10-09 15:28:31 -07:00
2021-03-10 11:19:38 +02:00
RUN mkdir /srv
COPY . /srv
2016-10-09 15:28:31 -07:00
2021-03-10 11:19:38 +02:00
WORKDIR /srv
2016-10-09 15:28:31 -07:00
2021-03-10 11:19:38 +02:00
CMD ["sanic", "simple_server.app"]