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.
 
 

9 lines
268 B

# Alpine results in segfaults, will stick with slim for now...
FROM node:14-slim AS base
RUN apt-get update
RUN apt-get full-upgrade -y
RUN apt-get install -y libasound2
RUN apt-get autoremove --purge -y
RUN rm -rf /var/lib/apt/lists/*
# RUN mkdir /cores
WORKDIR /app