sanic/examples/Dockerfile

9 lines
108 B
Docker
Raw Permalink Normal View History

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