Skip to content
GitLab
Projects Groups Topics Snippets
  • /
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
  • Sign in
  • D Docker Ubuntu Ces Slurm Sim
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributor statistics
    • Graph
    • Compare revisions
  • Issues 0
    • Issues 0
    • List
    • Boards
    • Service Desk
    • Milestones
  • Merge requests 0
    • Merge requests 0
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Packages and registries
    • Packages and registries
    • Package Registry
    • Terraform modules
  • Monitor
    • Monitor
    • Incidents
  • Analytics
    • Analytics
    • Value stream
    • CI/CD
    • Repository
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • Manuel G. Marciani
  • Docker Ubuntu Ces Slurm Sim
  • Merge requests
  • !1

Fix continuation (fixing a warning)

  • Review changes

  • Download
  • Patches
  • Plain diff
Closed Bruno de Paula Kinoshita requested to merge bdepaula/docker-ubuntu-ces-slurm-sim:fix-continuation into master Jul 11, 2023
  • Overview 1
  • Commits 1
  • Pipelines 0
  • Changes 1

Running docker --debug build -t bdepaula/docker-ubuntu-ces-slurm-sim:latest . I got the warning

 1 warning found:
 - Empty continuation line found in: RUN apt-get update     && apt-get --no-install-recommends -y install make        automake        autoconf        gcc        g++        libcurl4        debianutils        libglib2.0-dev        libgtk2.0-dev        vim        mariadb-server        mariadb-client        libmariadbd-dev        libpam0g-dev        git        wget        bzip2        libtool        libncurses-dev        libgdm1        libffi7        zlib1g-dev        zlib1g        pip        locales        supervisor     && pip install --no-cache-dir pandas     && rm -rf /var/lib/apt/lists/* ENV PYTHONDONTWRITEBYTECODE=1
Empty continuation lines will become errors in a future release
More info: https://github.com/moby/moby/pull/33719
Dockerfile:49
--------------------
  47 |         
  48 |     # manuel: avoid keeping bytecode 
  49 | >>> ENV PYTHONDONTWRITEBYTECODE=1
  50 |     
  51 |     # manuel: configure git to ignore certificates (SUUUPER SHADY)
--------------------

Solved removing the extra \ 👍

Assignee
Assign to
Reviewers
Request review from
Time tracking
Source branch: fix-continuation