You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
	
	
		
			
				
					
						
						
							|  | ARG PHP_VERSION=7.4.4
FROM php:$PHP_VERSION-alpine
RUN echo "date.timezone = UTC"         > /usr/local/etc/php/conf.d/etc.ini
ENV TERM xterm
RUN apk add --update --no-cache \
libcurl \
bash \
curl
RUN docker-php-ext-install bcmath
COPY ./project /projects/main
 |