mirror of
https://github.com/simonw/datasette.git
synced 2025-12-10 16:51:24 +01:00
Released 0.7
This commit is contained in:
parent
e838bd743d
commit
6b3b05b6db
2 changed files with 2 additions and 2 deletions
|
|
@ -140,7 +140,7 @@ def make_dockerfile(files, metadata_file):
|
|||
FROM python:3
|
||||
COPY . /app
|
||||
WORKDIR /app
|
||||
RUN pip install https://static.simonwillison.net/static/2017/datasette-0.6-py3-none-any.whl
|
||||
RUN pip install https://static.simonwillison.net/static/2017/datasette-0.7-py3-none-any.whl
|
||||
RUN datasette build {} --inspect-file inspect-data.json
|
||||
EXPOSE 8001
|
||||
CMD ["datasette", "serve", {}, "--port", "8001", "--cors", "--inspect-file", "inspect-data.json"{}]'''.format(
|
||||
|
|
|
|||
2
setup.py
2
setup.py
|
|
@ -2,7 +2,7 @@ from setuptools import setup, find_packages
|
|||
|
||||
setup(
|
||||
name='datasette',
|
||||
version='0.6',
|
||||
version='0.7',
|
||||
packages=find_packages(),
|
||||
package_data={'datasette': ['templates/*.html']},
|
||||
include_package_data=True,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue