Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.
$ python -m SimpleHTTPServer 8000| FROM python:3.7-alpine as base | |
| ENV PYTHONDONTWRITEBYTECODE 1 | |
| COPY requirements.txt requirements_dev.txt ./ | |
| RUN apk add --update --no-cache --virtual .build-deps \ | |
| build-base \ | |
| postgresql-dev \ | |
| libffi-dev \ | |
| python3-dev \ |
Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.
$ python -m SimpleHTTPServer 8000