Docker PowerShell version 7.1?

Product: PowerShell Universal
Version: 1.5.13

Has anyone been able to get the ubuntu docker working with powershell version 7.1.X?
When I change the image tag to 7.1.2-ubuntu-18.04 in my dockerfile, it builds fine and I’m able to run PSU and login but endpoints, jobs and dashboards can’t run.
Job Error I get in the UI:
image

When trying to start a dashboard, docker logs:

Powershell seems to work find inside the container, able to do all the normal things.

We’re missing a dependency in the container. I’m releasing an official Ubuntu 18.04, PS 7.1.2, Universal 1.5.13 right now. The missing dependency was libc6-dev. It’s required for PS7.1 for some reason.

RUN apt-get update \
    && apt-get install -y apt-utils 2>&1 | grep -v "debconf: delaying package configuration, since apt-utils is not installed" \
    && apt-get install --no-install-recommends -y \
    # curl is required to grab the Linux package
        curl \
    # less is required for help in powershell
        less \
    # requied to setup the locale
        locales \
    # required for SSL
        ca-certificates \
        gss-ntlmssp \
        libc6-dev \ 
    # PowerShell remoting over SSH dependencies
        openssh-client \
        unzip \
    # Download the Linux package and save it
    && curl -sSL ${PACKAGE_URL} -o /tmp/universal.zip \
    && unzip /tmp/universal.zip -d ./home/Universal || : \
    # remove powershell package
    && rm /tmp/universal.zip \
    && chmod +x ./home/Universal/Universal.Server

Thanks @adam, I’ll try it out tomorrow.