This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: v1 | |
kind: Pod | |
metadata: | |
name: myvirtualdesktop | |
spec: | |
containers: | |
- name: myvirtualdesktop | |
image: 482950716099.dkr.ecr.eu-west-1.amazonaws.com/myvirtualdesktop:latest | |
resources: | |
requests: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu:latest | |
ENV DEBIAN_FRONTEND=noninteractive | |
# INSTALL SOURCES FOR CHROME REMOTE DESKTOP AND VSCODE | |
RUN apt-get update && apt-get upgrade --assume-yes | |
RUN apt-get --assume-yes install curl gpg wget | |
RUN curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.gpg && \ | |
mv microsoft.gpg /etc/apt/trusted.gpg.d/microsoft.gpg | |
RUN wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | apt-key add - |