initial commit
This commit is contained in:
12
Dockerfile
Normal file
12
Dockerfile
Normal file
@ -0,0 +1,12 @@
|
||||
FROM ubuntu:20.04
|
||||
|
||||
RUN apt update && \
|
||||
apt upgrade -y && \
|
||||
apt install -y wget && \
|
||||
wget https://packages.microsoft.com/config/ubuntu/20.04/packages-microsoft-prod.deb && \
|
||||
dpkg -i packages-microsoft-prod.deb && \
|
||||
echo 'tzdata tzdata/Areas select Europe' | debconf-set-selections && \
|
||||
echo 'tzdata tzdata/Zones/Europe select Budapest' | debconf-set-selections && \
|
||||
DEBIAN_FRONTEND="noninteractive" apt install -y azure-cli npm && \
|
||||
npm i -g azure-functions-core-tools@4 --unsafe-perm true && \
|
||||
apt autoclean
|
Reference in New Issue
Block a user