2a59ec4cbd
* update deps. bump version * fix news * update deps. update ruff. lint * Support Python 3.9 (#6) * lint * update deps tests work against python 3.9 * bump version and news --------- Co-authored-by: Timmy Welch <timmy@narnian.us>
21 lines
530 B
Docker
21 lines
530 B
Docker
FROM python:3.9-bookworm
|
|
LABEL maintainer="AJ Slater <aj@slater.net>"
|
|
|
|
COPY debian.sources /etc/apt/sources.list.d/
|
|
# hadolint ignore=DL3008
|
|
RUN apt-get clean \
|
|
&& apt-get update \
|
|
&& apt-get install --no-install-recommends -y \
|
|
bash \
|
|
npm \
|
|
&& apt-get clean \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
WORKDIR /app
|
|
|
|
COPY bin ./bin
|
|
COPY .eslintignore .gitignore .prettierignore .remarkignore .shellcheckrc eslint.config.js package.json package-lock.json pyproject.toml poetry.lock Makefile ./
|
|
RUN make install-all
|
|
|
|
COPY . .
|