File: Dockerfile

package info (click to toggle)
golang-github-editorconfig-editorconfig-core-go 2.6.3-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 220 kB
  • sloc: makefile: 32
file content (13 lines) | stat: -rw-r--r-- 318 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
FROM golang:bullseye

SHELL [ "/bin/bash", "-x", "-e", "-c" ]

ARG DEBIAN_FRONTEND=noninteraactive
RUN apt-get update -y && \
    apt-get install -qy --no-install-recommends \
        cmake \
        git \
        make && \
    git config --system --add safe.directory '*'

CMD [ "make", "test-core", "test-skipped" ]