Dockerfile 504 B

1234567891011121314151617181920212223
  1. # pull official base image
  2. FROM python:3.10.7-slim-buster
  3. # set work directory
  4. WORKDIR /usr/src/app
  5. # set environment variables
  6. ENV PYTHONDONTWRITEBYTECODE 1
  7. ENV PYTHONUNBUFFERED 1
  8. # install system dependencies
  9. RUN apt-get update && apt-get install -y netcat
  10. # install dependencies
  11. RUN pip install --upgrade pip
  12. COPY ./requirements.txt /usr/src/app/requirements.txt
  13. RUN pip install -r requirements.txt
  14. # copy project
  15. COPY . /usr/src/app/
  16. RUN chmod u+x ./entrypoint.sh
  17. ENTRYPOINT ["./entrypoint.sh"]
PANIC: session(release): write data/sessions/2/1/2158280ef61cb35d: no space left on device

PANIC

session(release): write data/sessions/2/1/2158280ef61cb35d: no space left on device
github.com/go-macaron/session@v0.0.0-20190805070824-1a3cdc6f5659/session.go:199 (0x874858)
gopkg.in/macaron.v1@v1.3.9/context.go:79 (0x7fe23b)
github.com/go-macaron/inject@v0.0.0-20160627170012-d8a0b8677191/inject.go:157 (0x7d54d4)
github.com/go-macaron/inject@v0.0.0-20160627170012-d8a0b8677191/inject.go:135 (0x7d53fc)
gopkg.in/macaron.v1@v1.3.9/context.go:121 (0x7fe392)
gopkg.in/macaron.v1@v1.3.9/context.go:112 (0x804106)
gopkg.in/macaron.v1@v1.3.9/recovery.go:161 (0x8040fd)
gopkg.in/macaron.v1@v1.3.9/logger.go:40 (0x8016a4)
github.com/go-macaron/inject@v0.0.0-20160627170012-d8a0b8677191/inject.go:157 (0x7d54d4)
github.com/go-macaron/inject@v0.0.0-20160627170012-d8a0b8677191/inject.go:135 (0x7d53fc)
gopkg.in/macaron.v1@v1.3.9/context.go:121 (0x7fe392)
gopkg.in/macaron.v1@v1.3.9/router.go:187 (0x809f84)
gopkg.in/macaron.v1@v1.3.9/router.go:303 (0x80b0ec)
gopkg.in/macaron.v1@v1.3.9/macaron.go:220 (0x803224)
net/http/server.go:2916 (0x77e1da)
net/http/server.go:1966 (0x779696)
runtime/asm_amd64.s:1571 (0x471060)