Error on dev deployment

Hi everyone, I’ve deployed Home Assistant in dev mode on my local machine using dev-containers, and I’m getting this error while I run the “hass” command, any idea on what could be the reason?

root ➜ /workspaces/core (dev) $ hass
2021-04-30 11:56:16 WARNING (Recorder) [homeassistant.components.recorder.util] The system could not validate that the sqlite3 database at //root/.homeassistant/home-assistant_v2.db was shutdown cleanly
2021-04-30 11:56:17 ERROR (MainThread) [homeassistant] Error doing job: Task exception was never retrieved
Traceback (most recent call last):
  File "/workspaces/core/homeassistant/components/zeroconf/__init__.py", line 182, in _async_zeroconf_hass_start
    await hass.async_add_executor_job(
  File "/usr/local/lib/python3.8/concurrent/futures/thread.py", line 57, in run
    result = self.fn(*self.args, **self.kwargs)
  File "/workspaces/core/homeassistant/components/zeroconf/__init__.py", line 236, in _register_hass_zc_service
    info = ServiceInfo(
  File "/usr/local/lib/python3.8/site-packages/zeroconf/__init__.py", line 1807, in __init__
    if not type_.endswith(service_type_name(name, strict=False)):
  File "/usr/local/lib/python3.8/site-packages/zeroconf/__init__.py", line 301, in service_type_name
    raise BadTypeInNameException("Type '%s' must not start with '.'" % type_)
zeroconf.BadTypeInNameException: Type '._home-assistant._tcp.local.' must not start with '.'

I post also the configuration.yaml

# Configure a default setup of Home Assistant (frontend, api, etc)
default_config:

# Text to speech
tts:
  - platform: google_translate

group: !include groups.yaml
automation: !include automations.yaml
script: !include scripts.yaml
scene: !include scenes.yaml

logger:
  default: info
  logs:
    homeassistant.components.cloud: debug

frontend:
  development_repo: /workspaces/frontend/

I found the problem, I was running hass without any argument

hass

Instead of specifying the config directory

hass -c config