Skip to content

Commit

Permalink
churn: remove dockerfilelint again, fix Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
netomi committed Feb 8, 2024
1 parent ad84e8c commit a4b865a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 9 deletions.
5 changes: 0 additions & 5 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,6 @@ repos:
rev: v0.9.0.6
hooks:
- id: shellcheck
- repo: https://github.com/pryorda/dockerfilelint-precommit-hooks
rev: v0.1.0
hooks:
- id: dockerfilelint
stages: [commit]
- repo: https://github.com/netomi/dash-hooks
rev: v0.1.0
hooks:
Expand Down
7 changes: 3 additions & 4 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,8 @@ RUN go install -a github.com/jsonnet-bundler/jsonnet-bundler/cmd/[email protected]
FROM docker.io/library/python:3.10.10-slim as builder-python3

RUN apt-get update \
&& apt-get --no-install-recommends install -y \
golang \
&& rm -rf /var/lib/apt/lists/*
&& apt-get install -y \
golang gcc

WORKDIR /app

Expand All @@ -33,7 +32,7 @@ RUN poetry config virtualenvs.in-project true && \
FROM python:3.10.10-slim

RUN apt-get update \
&& apt-get --no-install-recommends install -y \
&& apt-get install -y --no-install-recommends \
git \
curl \
&& rm -rf /var/lib/apt/lists/*
Expand Down

0 comments on commit a4b865a

Please sign in to comment.