I am running my application which is just soketi which uses uWebSockets.
My machine fails to deploy with these logs
throw new Error('This version of uWS.js supports only Node.js 14, 16 and 18 on (glibc) Linux, macOS and Windows, on Tier 1 platforms (https://github.com/nodejs/node/blob/master/BUILDING.md#platform-list).\n\n' + e.toString());
I installed Node 18. I presume the Fly Machine platform is compatible with node and their platform list
Is there any additional configuration needed to be done to get Node to work on the Fly Machine?
My steps were to 1) create a soketi.conf file 2) create a Dockerfile file 3) run command fly launch.
FROM node:18-alpine
# Install necessary packages
RUN apk add --no-cache git python3 gcc supervisor
# Set up global npm directory and permissions
RUN mkdir -p /usr/local/n
RUN chmod -R 777 /usr/local/n
# Set the working directory
WORKDIR /usr/src/app
# Install soketi globally
RUN npm install -g @soketi/soketi
# Copy Supervisor configuration
COPY soketi.conf /etc/supervisor/conf.d/soketi.conf
# Expose the port soketi will run on
EXPOSE 6001
# Command to start Supervisor, which will manage soketi
CMD ["supervisord", "-c", "/etc/supervisor/supervisord.conf"]
Hi… I think it might be complaining specifically about glibc. Last I heard, Alpine either didn’t support that—or required a lot of hoops to be jumped through first.
Hi. Okay, thanks. I added gcompat for the glibc compatibility and added a default supervisor.conf file generated from echo_supervisord_conf.
My Dockerfile is
FROM node:18-alpine
# Install necessary packages
RUN apk add --no-cache git python3 gcc gcompat supervisor
# Set up global npm directory and permissions
RUN mkdir -p /usr/local/n
RUN chmod -R 777 /usr/local/n
# Set the working directory
WORKDIR /usr/src/app
# Install soketi globally
RUN npm install -g @soketi/soketi
# Copy Supervisor configuration files
COPY supervisord.conf /etc/supervisor/supervisord.conf
COPY soketi.conf /etc/supervisor/soketi.conf
# Ensure correct permissions for Supervisor config
RUN chmod 644 /etc/supervisor/supervisord.conf
RUN chmod 644 /etc/supervisor/soketi.conf
# Expose the port soketi will run on
EXPOSE 6001
# Command to start Supervisor, which will manage soketi
CMD ["supervisord", "-c", "/etc/supervisor/supervisord.conf"]
[ 0.274033] PCI: Fatal: No config space access function found
INFO Starting init (commit: f7402432)...
INFO Preparing to run: `docker-entrypoint.sh supervisord -c /etc/supervisor/supervisord.conf` as root
INFO [fly api proxy] listening at /.fly/api
2024/06/19 05:13:25 INFO SSH listening listen_address=[fdaa:9:7227:a7b:1ac:ab97:c7a2:2]:22 dns_server=[fdaa::3]:53
Machine started in 727ms
INFO Main child exited normally with code: 0
INFO Starting clean up.
WARN could not unmount /rootfs: EINVAL: Invalid argument
[ 1.624185] reboot: Restarting system
machine exited with exit code 0, not restarting
What do the errors and warnings mean and how come the machine exits without restarting?
Thanks! My machine now continues to run instead of exiting immediately. I also updated my fly.toml file to have a minimum of one machine running so it continually runs as I want instead of exiting after a few minutes of no traffic.