File: Dockerfile

package info (click to toggle)
python-homeassistant-analytics 0.9.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 12,288 kB
  • sloc: python: 462; sh: 10; makefile: 3
file content (9 lines) | stat: -rw-r--r-- 245 bytes parent folder | download
1
2
3
4
5
6
7
8
9
FROM mcr.microsoft.com/vscode/devcontainers/python:1-3.11

RUN pip3 --disable-pip-version-check --no-cache-dir install \
    setuptools \
    poetry \
    && rm -rf /tmp/pip-tmp

# Set the default shell to bash instead of sh
ENV SHELL /bin/bash