Creating a dockerfile for a .deb file – Debian
I want to create a dockerfile for a debian file extension which runs on ubuntu 18.04. So far I've written this FROM ubuntu:18.04 AS ubuntu RUN apt-get update WORKDIR /Downloads/invisily RUN apt-get install ./invisily.deb All phases run fine except the…