mirror of
				https://github.com/linuxserver/docker-webtop.git
				synced 2025-10-31 19:34:03 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
		
			486 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			486 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| FROM ghcr.io/linuxserver/baseimage-rdesktop-web:3.16
 | |
| 
 | |
| # set version label
 | |
| ARG BUILD_DATE
 | |
| ARG VERSION
 | |
| ARG MATE_VERSION
 | |
| LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
 | |
| LABEL maintainer="thelamer"
 | |
| 
 | |
| 
 | |
| RUN \
 | |
|   echo "**** install packages ****" && \
 | |
|   apk add --no-cache \
 | |
|     firefox \
 | |
|     mate-desktop-environment && \
 | |
|   echo "**** cleanup ****" && \
 | |
|   rm -rf \
 | |
|     /tmp/*
 | |
| 
 | |
| # add local files
 | |
| COPY /root /
 | |
| 
 | |
| # ports and volumes
 | |
| EXPOSE 3000
 | |
| 
 | |
| VOLUME /config
 |